/* ================================================
   VERACITY AUTOTRONIX – WILLARD BATTERY CENTER
   Modern, Bold, Industrial-Green Aesthetic
   Fonts: Syne (headings) + DM Sans (body)
   ================================================ */

:root {
    --green: #00A651;
    --green-dark: #007a3d;
    --green-light: #4ec476;
    --green-ultra: #e6f7ee;
    --gold: #F5C842;
    --dark: #0a0f0d;
    --dark-2: #111a14;
    --dark-3: #1a2620;
    --mid: #2e3d35;
    --text: #1a2620;
    --text-2: #4a5f52;
    --text-3: #7a9080;
    --white: #ffffff;
    --off-white: #f4f8f5;
    --border: rgba(0,166,81,0.12);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========================= PROGRESS BAR ========================= */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    z-index: 9999; width: 0%; transition: width 0.1s linear;
}

/* ========================= NAVBAR ========================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 2rem;
}

.nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.logo-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--text); }
.logo-sub { font-size: 0.7rem; color: var(--green); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
    display: flex; list-style: none; gap: 0.25rem; margin: 0;
}
.nav-link {
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 0.95rem; color: var(--text-2);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-ultra); }

.nav-cta {
    background: var(--green); color: #fff; padding: 0.6rem 1.4rem;
    border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================= HERO ========================= */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 24px 60px;
    background: var(--dark);
    gap: 4rem;
    justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,166,81,0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,166,81,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-glow {
    position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,166,81,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 580px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,166,81,0.15); border: 1px solid rgba(0,166,81,0.3);
    color: var(--green-light); padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
    animation: fadeDown 0.6s ease both;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800;
    color: var(--white); line-height: 1.0; margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease 0.1s both;
}
.hero-accent { color: var(--green); }

.hero-desc {
    color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 460px;
    margin-bottom: 2rem; animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex; align-items: center; gap: 1.5rem;
    margin-top: 3rem; animation: fadeUp 0.7s ease 0.4s both;
}
.hstat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--green); font-weight: 800; }
.hstat span { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* HERO VISUAL */
.hero-visual {
    position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.battery-showcase {
    position: relative; width: 320px; height: 320px;
    display: flex; align-items: center; justify-content: center;
}
.bat-ring {
    position: absolute; border-radius: 50%; border: 1px solid rgba(0,166,81,0.25);
    animation: spin 20s linear infinite;
}
.bat-ring-1 { width: 100%; height: 100%; }
.bat-ring-2 { width: 76%; height: 76%; border-color: rgba(0,166,81,0.35); animation-duration: 15s; animation-direction: reverse; }
.bat-ring-3 { width: 52%; height: 52%; border-color: rgba(0,166,81,0.5); animation-duration: 10s; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.bat-icon-wrap {
    position: relative; z-index: 2; text-align: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(0,166,81,0.3);
    border-radius: 20px; padding: 2rem;
    backdrop-filter: blur(10px);
}
.bat-icon { font-size: 4rem; color: var(--green); display: block; margin-bottom: 1rem; }
.bat-charge-bar { width: 80px; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.bat-charge-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--green-light)); animation: charge 2s ease-in-out infinite; }
@keyframes charge { 0%{width:0%} 80%{width:90%} 100%{width:90%} }

.bat-brand-tags {
    position: absolute; inset: 0; pointer-events: none;
}
.btag {
    position: absolute; padding: 0.3rem 0.8rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; font-family: 'Syne', sans-serif;
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
}
.btag-willard { top: 5%; left: 50%; transform: translateX(-50%); background: rgba(0,166,81,0.8); color: #fff; }
.btag-gp { right: 0; top: 40%; background: rgba(232,64,64,0.8); color: #fff; }
.btag-sabat { bottom: 5%; left: 50%; transform: translateX(-50%); background: rgba(0,180,180,0.8); color: #fff; }
.btag-top { left: 0; top: 40%; background: rgba(128,64,232,0.8); color: #fff; }

.scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.4); font-size: 0.75rem; animation: bob 2s ease infinite;
    z-index: 3;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ========================= BUTTONS ========================= */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.75rem 1.75rem; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
    transition: var(--transition); cursor: pointer; border: none;
    white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,166,81,0.3); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-ultra); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ========================= BRANDS STRIP ========================= */
.brands-strip {
    background: var(--off-white); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 1.2rem 24px;
}
.brands-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.brands-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); white-space: nowrap; }
.brand-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.brand-pill {
    display: flex; align-items: center; gap: 6px;
    padding: 0.4rem 1rem; border-radius: 50px;
    background: #fff; border: 1px solid var(--border);
    font-size: 0.85rem; font-weight: 700; color: var(--green);
    font-family: 'Syne', sans-serif;
    transition: var(--transition);
}
.brand-pill:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-1px); }

/* ========================= SECTIONS ========================= */
.section { padding: 6rem 0; }

.section-label {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--green); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 8px;
}
.section-label::before {
    content: ''; display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text); margin-bottom: 2.5rem;
}

/* ========================= WHY SECTION ========================= */
.why-section { background: var(--white); }

.why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem;
}
.why-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.why-card:hover { border-color: rgba(0,166,81,0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }

.why-num {
    font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800;
    color: rgba(0,166,81,0.08); position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
}
.why-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,166,81,0.1); display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.3rem; margin-bottom: 1.2rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); }
.why-card p { color: var(--text-2); font-size: 0.93rem; line-height: 1.7; }

/* ========================= PRODUCTS ========================= */
.products-section { background: var(--off-white); }

.products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.product-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(var(--c), 0.3); }

.product-stripe { height: 4px; width: 100%; }

.product-icon {
    font-size: 2.5rem; padding: 1.5rem 1.5rem 0; opacity: 0.9;
}

.product-body { padding: 1rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-brand {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 0.4rem;
}
.product-body h3 { font-size: 1.2rem; margin-bottom: 0.7rem; color: var(--text); }
.product-body p { color: var(--text-2); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }

.product-specs { list-style: none; margin-top: auto; }
.product-specs li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.45rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
}
.product-specs li:last-child { border-bottom: none; }
.product-specs span { color: var(--text-3); }
.product-specs strong { color: var(--text); font-weight: 600; }

/* ========================= SERVICES PREVIEW ========================= */
.services-preview { background: var(--white); }

.services-preview-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.sp-desc { color: var(--text-2); margin-bottom: 2rem; max-width: 400px; }

.service-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.2rem; border-radius: var(--radius-sm);
    border: 1px solid transparent; transition: var(--transition);
    margin-bottom: 0.5rem;
}
.service-item:hover { background: var(--off-white); border-color: var(--border); }

.si-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(0,166,81,0.1); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.si-body h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--text); }
.si-body p { font-size: 0.88rem; color: var(--text-2); line-height: 1.5; }

/* ========================= TEAM ========================= */
.team-preview { background: var(--dark); color: #fff; }
.team-preview .section-label { color: var(--green-light); }
.team-preview .section-label::before { background: var(--green-light); }
.team-preview .section-title { color: #fff; }

.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}

.team-card {
    background: var(--dark-2); border: 1px solid rgba(0,166,81,0.15);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.team-card:hover { border-color: rgba(0,166,81,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.team-card.featured { border-color: rgba(0,166,81,0.5); }

.team-img-wrap { position: relative; height: 280px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.team-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    opacity: 0; transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-contact-btn {
    width: 44px; height: 44px; border-radius: 50%; background: var(--green);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition);
}
.team-contact-btn:hover { background: var(--white); color: var(--green); transform: scale(1.1); }

.team-info { padding: 1.5rem; }
.team-role-badge {
    display: inline-block; padding: 0.3rem 0.9rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 0.75rem;
    background: rgba(0,166,81,0.2); color: var(--green-light);
}
.team-role-badge.tech { background: rgba(0,180,180,0.2); color: #4ecece; }
.team-role-badge.sales { background: rgba(245,200,66,0.2); color: var(--gold); }

.team-info h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.team-info p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1rem; }

.team-contacts-row {
    display: flex; flex-direction: column; gap: 0.4rem;
    padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.team-contacts-row a {
    font-size: 0.88rem; color: var(--green-light);
    display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.team-contacts-row a:hover { color: #fff; }

.team-cta { text-align: center; margin-top: 2.5rem; }

/* ========================= TESTIMONIALS ========================= */
.testimonials-section { background: var(--off-white); overflow: hidden; }

.testimonials-track {
    display: flex; gap: 1.5rem; margin-top: 2rem;
    overflow: hidden; position: relative;
}
.testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    min-width: calc(50% - 0.75rem); transition: var(--transition);
    flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p { color: var(--text-2); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.97rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--green);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; font-family: 'Syne', sans-serif; flex-shrink: 0;
}
.testi-author strong { color: var(--text); font-size: 0.95rem; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testi-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    color: var(--text); cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); transition: var(--transition); cursor: pointer;
}
.testi-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ========================= CTA BANNER ========================= */
.cta-banner {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    padding: 4rem 24px;
}
.cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================= FOOTER ========================= */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); }
.footer-top { padding: 4rem 0; }

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-brand .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub { color: var(--green); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }

.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #fff; margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--green-light); }

.footer-contact ul { list-style: none; }
.footer-contact li {
    display: flex; gap: 10px; margin-bottom: 0.9rem;
    align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.5);
}
.footer-contact i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--green-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.3); }

/* Developer Credit */
.footer-dev-credit {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    animation: devFadeIn 1s ease 0.5s both;
}
@keyframes devFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dev-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.22); font-weight: 600;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.dev-info {
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.dev-name {
    font-size: 0.82rem; font-weight: 700; font-family: 'Syne', sans-serif;
    color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 6px;
    padding: 0.3rem 0.75rem; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.dev-name::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,166,81,0.15), transparent);
    animation: devShimmer 3s ease-in-out 1.5s infinite;
}
@keyframes devShimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}
.dev-name i { color: var(--green); font-size: 0.75rem; }

.dev-link {
    font-size: 0.78rem; font-weight: 500;
    color: rgba(255,255,255,0.38);
    display: flex; align-items: center; gap: 5px;
    padding: 0.3rem 0.7rem; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}
.dev-link i { color: var(--green); font-size: 0.72rem; }
.dev-link:hover {
    color: var(--green-light);
    border-color: rgba(0,166,81,0.35);
    background: rgba(0,166,81,0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,166,81,0.15);
}
.dev-link:hover i { color: var(--green-light); }

@media (max-width: 768px) {
    .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .dev-info { justify-content: center; }
}

/* ========================= ABOUT PAGE ========================= */
.page-hero {
    background: var(--dark); padding: 160px 24px 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,166,81,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,166,81,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}
.page-hero-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,166,81,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,166,81,0.15); border: 1px solid rgba(0,166,81,0.3);
    color: var(--green-light); padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; margin-bottom: 1.2rem;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ABOUT STORY */
.about-story { padding: 6rem 0; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-img {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-story-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--green); color: #fff; padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm); font-weight: 700; font-size: 0.85rem;
}
.about-story-text .section-title { margin-bottom: 1.5rem; }
.about-story-text p { color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }

/* TEAM SECTION (ABOUT PAGE) */
.team-section-full { padding: 6rem 0; background: var(--dark); }
.team-section-full .section-label { color: var(--green-light); }
.team-section-full .section-label::before { background: var(--green-light); }
.team-section-full .section-title { color: #fff; }

.team-full-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; margin-top: 3rem;
}
.team-full-card {
    background: var(--dark-2); border: 1px solid rgba(0,166,81,0.15);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.team-full-card:hover { border-color: rgba(0,166,81,0.4); transform: translateY(-4px); }
.team-full-card.ceo-card { border-color: rgba(245,200,66,0.3); }
.team-full-card.ceo-card:hover { border-color: var(--gold); }

.tf-img { position: relative; height: 300px; overflow: hidden; }
.tf-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.team-full-card:hover .tf-img img { transform: scale(1.04); }
.tf-badge {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.35rem 0.9rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.tf-badge-ceo { background: var(--gold); color: #000; }
.tf-badge-tech { background: var(--green); color: #fff; }
.tf-badge-sales { background: #4e90e8; color: #fff; }

.tf-body { padding: 1.8rem; }
.tf-role { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-light); margin-bottom: 0.4rem; }
.tf-body h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.8rem; }
.tf-body p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.2rem; }

.tf-contacts { padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.tf-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem; font-size: 0.88rem; }
.tf-contact-row i { color: var(--green); width: 16px; }
.tf-contact-row a { color: rgba(255,255,255,0.6); }
.tf-contact-row a:hover { color: var(--green-light); }

.tf-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.tf-socials a {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition);
}
.tf-socials a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* VALUES */
.values-section { padding: 6rem 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem; text-align: center; transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,166,81,0.25); }
.value-icon { font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

/* STATS */
.stats-section { padding: 4rem 0; background: var(--green); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; font-weight: 800; color: #fff; }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ========================= SERVICES PAGE ========================= */
.services-grid-full { display: flex; flex-direction: column; gap: 2rem; }

.service-block {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.service-block:hover { border-color: rgba(0,166,81,0.3); box-shadow: var(--shadow); }

.service-block-header {
    background: var(--off-white); padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1rem;
    border-bottom: 1px solid var(--border);
}
.sb-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,166,81,0.1); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.service-block-header h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.2rem; }
.service-block-header p { font-size: 0.88rem; color: var(--text-2); }

.service-block-body { padding: 2rem; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.step-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem; background: var(--off-white); border-radius: var(--radius-sm);
}
.step-num {
    width: 32px; height: 32px; border-radius: 50%; background: var(--green);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; flex-shrink: 0; font-family: 'Syne', sans-serif;
}
.step-info h5 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text); }
.step-info p { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }

/* Products showcase (services page) */
.products-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.psc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.psc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.psc-header { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; }
.psc-body { padding: 1.2rem; }
.psc-body h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.8rem; }
.psc-specs { list-style: none; }
.psc-specs li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.psc-specs li:last-child { border-bottom: none; }
.psc-specs span { color: var(--text-3); }
.psc-specs strong { color: var(--text); }

/* Product image icons (index.html product cards) */
.product-icon-img {
    padding: 0;
    height: 170px;
    background: var(--off-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-bat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem 1.25rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-bat-img {
    transform: scale(1.07);
}

/* Product showcase image headers (services.html) */
.psc-header-img {
    position: relative;
    overflow: hidden;
}
.psc-bat-img {
    height: 88px;
    width: auto;
    max-width: 92%;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.psc:hover .psc-bat-img {
    transform: scale(1.08);
}

/* Additional services cards */
.add-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.add-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 1.5rem; text-align: center;
    transition: var(--transition);
}
.add-card:hover { border-color: rgba(0,166,81,0.3); transform: translateY(-3px); }
.add-card-icon { font-size: 2rem; color: var(--green); margin-bottom: 0.8rem; }
.add-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.add-card p { font-size: 0.87rem; color: var(--text-2); line-height: 1.5; }

/* ========================= CONTACT PAGE ========================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-top: 2rem; }

.contact-info-card, .contact-form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.5rem;
}

.contact-detail-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
.cdi-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(0,166,81,0.1); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.cdi-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.cdi-body p, .cdi-body a { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; display: block; }
.cdi-body a { color: var(--green); font-weight: 500; }
.cdi-body a:hover { color: var(--green-dark); }

.hours-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.hc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.hc i { font-size: 1.5rem; color: var(--green); margin-bottom: 0.5rem; display: block; }
.hc h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.hc p { font-size: 0.82rem; color: var(--text-2); }

/* Form */
.contact-form-card h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.8rem 1rem;
    border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    color: var(--text); background: var(--white); transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,166,81,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; background: var(--green); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Quick call bar */
.quick-call-bar {
    background: var(--green); padding: 1rem 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; flex-wrap: wrap;
}
.qcb-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.qcb-nums { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.qcb-num {
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 700; font-size: 1.05rem; font-family: 'Syne', sans-serif;
}
.qcb-num i { font-size: 1rem; }

/* Map placeholder */
.map-section { padding: 4rem 0; background: var(--off-white); }
.map-placeholder {
    background: var(--dark); border-radius: var(--radius);
    height: 360px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    color: rgba(255,255,255,0.4); overflow: hidden; position: relative;
}
.map-placeholder-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,166,81,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,166,81,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-icon { font-size: 3rem; color: var(--green); position: relative; z-index: 1; }
.map-placeholder h3 { font-size: 1.4rem; color: #fff; position: relative; z-index: 1; }
.map-placeholder p { font-size: 0.9rem; text-align: center; max-width: 350px; position: relative; z-index: 1; }
.map-placeholder a { color: var(--green); font-weight: 600; position: relative; z-index: 1; }

/* ========================= WHATSAPP FLOAT ========================= */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: waPop 0.5s 2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
@keyframes waPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }

.wa-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: var(--dark); color: #fff; padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm); font-size: 0.82rem; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ========================= ANIMATIONS ========================= */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .services-preview-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    
    .nav-links.open {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        padding: 1rem 0; box-shadow: var(--shadow);
    }
    .nav-links.open .nav-link { padding: 0.8rem 24px; border-radius: 0; }
    
    .hero { flex-direction: column; padding: 110px 24px 60px; gap: 2.5rem; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .hero-desc { margin: 0 auto 2rem; }
    
    .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .testi-card { min-width: calc(100% - 0px); }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hours-cards { grid-template-columns: 1fr; }
    .team-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 4rem 0; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .brand-pills { gap: 0.5rem; }
    .brands-inner { flex-direction: column; align-items: flex-start; }
}
