/* ==============================================
   UTILICOM v2 — Main Stylesheet
   Fonts loaded via <link> tags in includes/head.php
   ============================================== */

:root {
  --navy:        #2e3347;
  --navy-light:  #3d4459;
  --navy-dark:   #1a1e2e;
  --orange:      #e8653a;
  --orange-dark: #c94f25;
  --white:       #ffffff;
  --light-bg:    #f5f6f8;
  --text-dark:   #1e2230;
  --text-mid:    #4a5168;
  --text-light:  #8a8fa8;
  --border:      #e2e4ec;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.13);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);font-size:15px;line-height:1.65}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
ul{list-style:none}
button{cursor:pointer;border:none;font-family:inherit}
input,textarea,select{font-family:inherit;font-size:15px}

/* Layout */
.container{max-width:1080px;margin:0 auto;padding:0 2.5rem}
.section{padding:5.5rem 0}
.section-light{background:var(--light-bg)}
.section-navy{background:var(--navy-dark)}
.section-orange{background:var(--orange)}

/* Typography */
.eyebrow{color:var(--orange);font-size:0.7rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;margin-bottom:0.65rem;display:block}
.eyebrow-white{color:rgba(255,255,255,0.5);font-size:0.7rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;margin-bottom:0.65rem;display:block}
.section-title{font-family:'Inter',sans-serif;font-size:2.1rem;font-weight:800;color:var(--text-dark);margin-bottom:1rem;line-height:1.2}
.section-title.white{color:var(--white)}
.section-sub{color:var(--text-mid);font-size:0.97rem;max-width:560px;line-height:1.78}
.section-sub.white{color:rgba(255,255,255,0.55)}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.75rem;border-radius:var(--radius-sm);font-weight:700;font-size:0.87rem;transition:all 0.2s;cursor:pointer;border:none;white-space:nowrap}
.btn-orange{background:var(--orange);color:var(--white)}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,101,58,0.35)}
.btn-outline-white{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.3)}
.btn-outline-white:hover{border-color:rgba(255,255,255,0.65);background:rgba(255,255,255,0.07)}
.btn-white{background:var(--white);color:var(--orange)}
.btn-white:hover{opacity:0.93;transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--text-dark);border:1.5px solid var(--border)}
.btn-outline:hover{border-color:var(--orange);color:var(--orange)}

/* Nav */
.main-nav{background:var(--navy-dark);padding:0 2.5rem;display:flex;align-items:center;justify-content:space-between;height:70px;position:sticky;top:0;z-index:1000;box-shadow:0 2px 24px rgba(0,0,0,0.35)}
.nav-logo{display:flex;align-items:center;gap:11px;cursor:pointer;text-decoration:none;flex-shrink:0}
.nav-logo-svg{width:40px;height:40px;flex-shrink:0}
.nav-logo-text .name{color:var(--white);font-family:'Inter',sans-serif;font-size:1.35rem;font-weight:800;letter-spacing:-0.01em;display:block}
.nav-logo-text .tag{color:#6a7a9a;font-size:0.58rem;letter-spacing:0.12em;text-transform:uppercase}
/* Desktop links */
.nav-links{display:flex;gap:0.2rem;align-items:center}
.nav-link{color:#aab4cc;font-size:0.83rem;font-weight:500;padding:0.5rem 0.9rem;border-radius:6px;transition:all 0.18s;white-space:nowrap;cursor:pointer;text-decoration:none}
.nav-link:hover,.nav-link.active{color:var(--white);background:rgba(255,255,255,0.07)}
.nav-cta{background:var(--orange);color:var(--white)!important;padding:0.5rem 1.2rem;border-radius:7px;font-weight:700;margin-left:0.5rem;transition:background 0.2s;text-decoration:none}
.nav-cta:hover{background:var(--orange-dark)}
.nav-dropdown{position:relative}
.nav-dropdown:hover .dropdown{display:block}
.dropdown{display:none;position:absolute;top:calc(100% + 10px);left:0;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);min-width:235px;box-shadow:var(--shadow-lg);padding:0.5rem}
.dropdown a{display:flex;align-items:center;gap:0.6rem;padding:0.55rem 0.9rem;color:var(--text-mid);font-size:0.82rem;border-radius:6px;transition:all 0.15s;text-decoration:none}
.dropdown a:hover{background:var(--light-bg);color:var(--orange)}
.dropdown-icon{font-size:1rem;width:22px;text-align:center}
/* Hamburger button — hidden on desktop */
.nav-hamburger{display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:40px;height:40px;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.12);border-radius:8px;cursor:pointer;padding:0;flex-shrink:0}
.nav-hamburger span{display:block;width:20px;height:2px;background:var(--white);border-radius:2px;transition:all 0.28s ease}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* Mobile menu panel */
.mobile-menu{display:none;position:fixed;top:70px;left:0;right:0;bottom:0;background:var(--navy-dark);z-index:999;overflow-y:auto;opacity:0;transform:translateY(-8px);transition:opacity 0.25s ease,transform 0.25s ease;pointer-events:none}
.mobile-menu.open{opacity:1;transform:translateY(0);pointer-events:all}
.mobile-menu-inner{padding:1.5rem 1.5rem 3rem}
.mobile-menu-section{border-bottom:1px solid rgba(255,255,255,0.07);padding:1rem 0}
.mobile-menu-section:last-child{border-bottom:none}
.mobile-menu-group-label{color:#5a6b84;font-size:0.68rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:0.5rem;padding:0 0.5rem}
.mobile-link{display:flex;align-items:center;gap:0.75rem;padding:0.75rem 0.5rem;color:#b0bcd4;font-size:0.92rem;font-weight:500;text-decoration:none;border-radius:8px;transition:all 0.18s}
.mobile-link:hover,.mobile-link:active{color:var(--white);background:rgba(255,255,255,0.06)}
.mobile-cta{display:block;background:var(--orange);color:var(--white)!important;text-align:center;padding:0.9rem 1.5rem;border-radius:8px;font-weight:700;font-size:0.95rem;text-decoration:none;margin:1rem 0;transition:background 0.2s}
.mobile-cta:hover{background:var(--orange-dark)}
.mobile-contact{display:flex;flex-direction:column;gap:0.6rem;margin-top:0.75rem}
.mobile-contact a{color:#5a6b84;font-size:0.83rem;text-decoration:none;padding:0.25rem 0.5rem;transition:color 0.2s}
.mobile-contact a:hover{color:var(--orange)}

/* Breadcrumb */
.breadcrumb{color:#5a6b8a;font-size:0.78rem;margin-bottom:1.5rem}
.breadcrumb a{color:#7a8baa;transition:color 0.2s;text-decoration:none}
.breadcrumb a:hover{color:var(--orange)}
.breadcrumb span{margin:0 0.4rem;color:#3d4a60}

/* Page hero */
.page-hero{background:var(--navy);padding:5rem 0 4.5rem;position:relative;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0.15}
.page-hero-content{position:relative;z-index:1}
.page-hero-badge{display:inline-block;background:rgba(232,101,58,0.18);color:var(--orange);font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;padding:0.35rem 0.9rem;border-radius:20px;margin-bottom:1.2rem;border:1px solid rgba(232,101,58,0.3)}
.page-hero h1{font-family:'Inter',sans-serif;color:var(--white);font-size:2.8rem;font-weight:800;line-height:1.15;margin-bottom:1.1rem}
.page-hero h1 em{color:var(--orange);font-style:normal}
.page-hero .lead{color:rgba(255,255,255,0.6);font-size:1rem;max-width:580px;line-height:1.78;margin-bottom:2rem}
.page-hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* Home hero */
.home-hero{position:relative;min-height:600px;display:flex;align-items:center;overflow:hidden;background:var(--navy-dark);width:100%}
.home-hero-bg{position:absolute;inset:0}
.home-hero-bg img{width:100%;height:100%;object-fit:cover;opacity:0.25}
.home-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(26,30,46,0.97) 40%,rgba(26,30,46,0.35) 100%)}
.home-hero-content{position:relative;z-index:1;padding:6rem 0 5.5rem;width:100%}
.home-hero-badge{display:inline-block;background:rgba(232,101,58,0.18);color:var(--orange);font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;padding:0.35rem 0.9rem;border-radius:20px;margin-bottom:1.4rem;border:1px solid rgba(232,101,58,0.3)}
.home-hero h1{font-family:'Inter',sans-serif;color:var(--white);font-size:3.4rem;font-weight:800;line-height:1.12;margin-bottom:1.25rem;max-width:640px}
.home-hero h1 em{color:var(--orange);font-style:normal}
.home-hero .lead{color:rgba(255,255,255,0.58);font-size:1.05rem;max-width:520px;line-height:1.78;margin-bottom:2.25rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,0.07);border-radius:var(--radius-md);overflow:hidden;margin-top:4rem}
.hero-stat{background:rgba(255,255,255,0.04);padding:1.5rem 1rem;text-align:center}
.hero-stat-num{font-family:'Inter',sans-serif;color:var(--white);font-size:2rem;font-weight:800}
.hero-stat-num em{color:var(--orange);font-style:normal}
.hero-stat-label{color:rgba(255,255,255,0.4);font-size:0.72rem;letter-spacing:0.04em;margin-top:0.25rem}

/* Service cards */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1.25rem;margin-top:2.75rem}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.75rem 1.5rem;transition:all 0.22s;cursor:pointer;display:flex;flex-direction:column}
.service-card:hover{border-color:var(--orange);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.service-icon{width:48px;height:48px;background:rgba(232,101,58,0.09);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;font-size:1.3rem;border:1px solid rgba(232,101,58,0.12);flex-shrink:0}
.service-card h3{font-size:0.93rem;font-weight:700;color:var(--text-dark);margin-bottom:0.45rem}
.service-card p{font-size:0.79rem;color:var(--text-mid);line-height:1.65;flex:1}
.card-link{display:inline-block;margin-top:1rem;font-size:0.78rem;font-weight:700;color:var(--orange)}

/* Feature rows with images */
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;padding:4rem 0;border-top:1px solid var(--border)}
.feature-row:first-child{border-top:none;padding-top:0}
.feature-row.flip{direction:rtl}
.feature-row.flip>*{direction:ltr}
.feature-img{border-radius:var(--radius-lg);overflow:hidden;position:relative;background:var(--light-bg);aspect-ratio:4/3}
.feature-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s}
.feature-img:hover img{transform:scale(1.03)}
.feature-img-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(46,51,71,0.25),transparent)}
.feature-img-badge{position:absolute;bottom:1.25rem;left:1.25rem;background:rgba(26,30,46,0.85);backdrop-filter:blur(8px);border-radius:var(--radius-sm);padding:0.75rem 1rem;border:1px solid rgba(255,255,255,0.1)}
.feature-img-badge .big{font-family:'Inter',sans-serif;color:var(--orange);font-size:1.4rem;font-weight:800}
.feature-img-badge .small{color:rgba(255,255,255,0.6);font-size:0.73rem;margin-top:2px}
.feature-content h2{font-family:'Inter',sans-serif;font-size:1.7rem;font-weight:800;margin-bottom:1rem;line-height:1.2}
.feature-content p{color:var(--text-mid);font-size:0.91rem;line-height:1.78;margin-bottom:1.25rem}
.tick-list{display:flex;flex-direction:column;gap:0.55rem;margin-bottom:1.75rem}
.tick-list li{font-size:0.84rem;color:var(--text-mid);display:flex;gap:0.7rem;align-items:flex-start}
.tick{color:var(--orange);font-weight:900;flex-shrink:0;margin-top:1px}

/* Stats row */
.stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1px;background:var(--border);border-radius:var(--radius-md);overflow:hidden;margin-top:2.75rem}
.stat-box{background:var(--white);padding:2.25rem 1.5rem;text-align:center}
.stat-box.dark{background:#252a3d;border:none}
.section-navy .stats-row{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.08)}
.stat-num{font-family:'Inter',sans-serif;font-size:2.2rem;font-weight:800;color:var(--orange);margin-bottom:0.3rem}
.stat-desc{font-size:0.78rem;color:var(--text-mid);line-height:1.55}
.stat-desc.white{color:rgba(255,255,255,0.65)}

/* Process steps */
.process-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:0;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;margin-top:2.75rem}
.process-step{padding:2.25rem 1.75rem;border-right:1px solid var(--border);background:var(--white)}
.process-step:last-child{border-right:none}
.step-num{font-family:'Inter',sans-serif;font-size:2.8rem;font-weight:800;color:rgba(232,101,58,0.15);margin-bottom:0.75rem;line-height:1}
.step-title{font-size:0.9rem;font-weight:700;color:var(--text-dark);margin-bottom:0.4rem}
.step-desc{font-size:0.79rem;color:var(--text-mid);line-height:1.65}

/* Cyber — pillars sit on white background, use brand slate colours */
.cyber-pillar{background:var(--light-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2.25rem;margin-bottom:1.25rem;transition:border-color 0.2s}
.cyber-pillar:hover{border-color:var(--orange);background:var(--white)}
.cyber-pillar-header{display:flex;gap:1.25rem;align-items:flex-start;margin-bottom:1.25rem}
.cyber-icon{width:52px;height:52px;background:rgba(232,101,58,0.1);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0;border:1px solid rgba(232,101,58,0.2)}
.cyber-pillar h3{color:var(--navy);font-size:1.05rem;font-weight:700;margin-bottom:0.2rem}
.cyber-subtitle{color:var(--orange);font-size:0.73rem;font-weight:600;letter-spacing:0.05em}
.cyber-pillar p{color:var(--text-mid);font-size:0.85rem;line-height:1.78;margin-bottom:1.1rem}
.tags{display:flex;flex-wrap:wrap;gap:0.45rem}
.tag{background:var(--white);color:var(--text-mid);font-size:0.71rem;padding:0.28rem 0.65rem;border-radius:20px;border:1px solid var(--border)}
/* Threat bars — used on dark navy section, keep white text */
.threat-bar{margin-bottom:1rem}
.threat-bar-label{display:flex;justify-content:space-between;font-size:0.79rem;color:rgba(255,255,255,0.48);margin-bottom:0.4rem}
.threat-bar-track{background:rgba(255,255,255,0.07);border-radius:4px;height:5px}
.threat-bar-fill{height:5px;border-radius:4px;background:var(--orange)}
/* Cyber mini cards — used on home page dark section, keep white text */
.cyber-mini-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem;margin-top:2.5rem}
.cyber-mini-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);border-radius:var(--radius-md);padding:1.5rem;display:flex;gap:1rem;transition:all 0.2s}
.cyber-mini-card:hover{background:rgba(232,101,58,0.08);border-color:rgba(232,101,58,0.3)}
.cyber-mini-icon{width:40px;height:40px;background:rgba(232,101,58,0.14);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.cyber-mini-card h4{color:var(--white);font-size:0.88rem;font-weight:700;margin-bottom:0.3rem}
.cyber-mini-card p{color:rgba(255,255,255,0.48);font-size:0.77rem;line-height:1.65}

/* Pricing */
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.25rem;margin-top:2.75rem}
.pricing-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:2.25rem 1.75rem;position:relative}
.pricing-card.featured{border-color:var(--orange)}
.pricing-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--orange);color:var(--white);font-size:0.67rem;font-weight:700;padding:0.25rem 0.8rem;border-radius:20px;white-space:nowrap;letter-spacing:0.06em}
.pricing-tier{font-size:0.72rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--text-light);margin-bottom:0.75rem}
.pricing-price{font-family:'Inter',sans-serif;font-size:2.2rem;font-weight:800;color:var(--text-dark);margin-bottom:0.3rem}
.pricing-price span{font-size:0.85rem;font-weight:500;color:var(--text-light);font-family:'Inter',sans-serif}
.pricing-desc{font-size:0.8rem;color:var(--text-mid);margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border);line-height:1.65}
.pricing-features{display:flex;flex-direction:column;gap:0.65rem;margin-bottom:1.75rem}
.pricing-features li{font-size:0.8rem;color:var(--text-mid);display:flex;gap:0.6rem}
.pricing-features li::before{content:'✓';color:var(--orange);font-weight:900;flex-shrink:0}

/* Case studies */
.case-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(310px,1fr));gap:1.5rem;margin-top:2.75rem}
.case-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all 0.22s}
.case-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.case-thumb{height:200px;overflow:hidden;position:relative;background:var(--navy)}
.case-thumb img{width:100%;height:100%;object-fit:cover;opacity:0.8;transition:transform 0.4s}
.case-card:hover .case-thumb img{transform:scale(1.04)}
.case-thumb-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,30,46,0.85),transparent 55%)}
.case-tag-over{position:absolute;top:1rem;left:1rem;background:var(--orange);color:var(--white);font-size:0.67rem;font-weight:700;letter-spacing:0.07em;text-transform:uppercase;padding:0.25rem 0.65rem;border-radius:20px}
.case-body{padding:1.6rem}
.case-body h3{font-size:1rem;font-weight:700;margin-bottom:0.5rem}
.case-body p{font-size:0.8rem;color:var(--text-mid);line-height:1.65;margin-bottom:1rem}
.case-result{background:var(--light-bg);border-radius:var(--radius-sm);padding:0.8rem 1rem;font-size:0.78rem;color:var(--text-mid)}
.case-result strong{color:var(--orange)}

/* Team */
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1.25rem;margin-top:2.75rem}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.team-photo{height:210px;overflow:hidden;position:relative;background:var(--navy)}
.team-photo img{width:100%;height:100%;object-fit:cover}
.team-body{padding:1.4rem 1.25rem}
.team-body h4{font-size:0.93rem;font-weight:700;margin-bottom:0.15rem}
.team-body .role{font-size:0.77rem;color:var(--orange);font-weight:600;margin-bottom:0.5rem}
.team-body p{font-size:0.78rem;color:var(--text-mid);line-height:1.65}

/* Values & timeline */
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.25rem;margin-top:2.75rem}
.value-card{padding:1.75rem 1.5rem;border:1px solid var(--border);border-radius:var(--radius-md);background:var(--white)}
.value-icon{font-size:1.8rem;margin-bottom:1rem;display:block}
.value-card h4{font-size:0.92rem;font-weight:700;margin-bottom:0.4rem}
.value-card p{font-size:0.8rem;color:var(--text-mid);line-height:1.65}
.timeline{margin-top:2.5rem}
.timeline-item{display:flex;gap:1.75rem;padding:1.5rem 0;border-bottom:1px solid var(--border)}
.timeline-item:last-child{border-bottom:none}
.timeline-year{font-family:'Inter',sans-serif;font-size:0.9rem;font-weight:800;color:var(--orange);min-width:52px;padding-top:2px}
.timeline-content h4{font-size:0.9rem;font-weight:700;margin-bottom:0.3rem}
.timeline-content p{font-size:0.82rem;color:var(--text-mid);line-height:1.65}

/* Accreditations */
.badge-row{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}
.accred-badge{background:var(--light-bg);border:1px solid var(--border);border-radius:var(--radius-sm);padding:0.75rem 1.25rem;display:flex;align-items:center;gap:0.6rem;font-size:0.8rem;font-weight:600;color:var(--text-dark)}
.accred-badge span{font-size:1.2rem}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:4.5rem;align-items:start;margin-top:3rem}
.contact-info h3{font-family:'Inter',sans-serif;font-size:1.3rem;font-weight:800;margin-bottom:1rem}
.contact-info p{font-size:0.88rem;color:var(--text-mid);line-height:1.78;margin-bottom:1.75rem}
.contact-detail{display:flex;gap:0.85rem;align-items:flex-start;margin-bottom:1.1rem}
.contact-detail-icon{width:38px;height:38px;background:rgba(232,101,58,0.09);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;border:1px solid rgba(232,101,58,0.14)}
.contact-detail-text strong{display:block;font-size:0.82rem;font-weight:700;margin-bottom:0.15rem}
.contact-detail-text span{font-size:0.82rem;color:var(--text-mid)}
.form-wrap{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2.75rem;box-shadow:var(--shadow-sm)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.1rem}
.form-group label{display:block;font-size:0.79rem;font-weight:600;margin-bottom:0.45rem;color:var(--text-dark)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:0.72rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius-sm);font-size:0.87rem;color:var(--text-dark);background:var(--white);transition:border-color 0.2s;outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange)}
.form-group textarea{resize:vertical;min-height:115px}
.form-note{font-size:0.74rem;color:var(--text-light);margin-top:0.85rem;line-height:1.6}
.alert{display:none;border-radius:var(--radius-sm);padding:1.25rem;text-align:center;font-size:0.88rem;font-weight:600;margin-top:1rem}
.alert-success{background:#edfaf4;border:1px solid #8dddb6;color:#1a7a45}
.alert-error{background:#fef2f2;border:1px solid #fca5a5;color:#b91c1c}

/* FAQ */
.faq-list{margin-top:2.75rem}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{padding:1.35rem 0;font-size:0.92rem;font-weight:700;color:var(--text-dark);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-icon{width:26px;height:26px;background:var(--light-bg);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--orange);font-size:1.1rem;font-weight:700;flex-shrink:0;transition:transform 0.25s;user-select:none}
.faq-item.open .faq-icon{transform:rotate(45deg);background:rgba(232,101,58,0.1)}
.faq-a{font-size:0.85rem;color:var(--text-mid);line-height:1.78;max-height:0;overflow:hidden;transition:max-height 0.3s ease,padding 0.3s ease}
.faq-item.open .faq-a{max-height:300px;padding-bottom:1.25rem}

/* CTA strip */
.cta-strip{padding:4rem 0}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cta-copy h2{font-family:'Inter',sans-serif;font-size:1.65rem;font-weight:800;color:var(--white);margin-bottom:0.4rem}
.cta-copy p{color:rgba(255,255,255,0.65);font-size:0.88rem}

/* Industry grid */
.industry-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1rem;margin-top:2.5rem}
.industry-item{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem 1.25rem}
.industry-item .ind-icon{font-size:1.5rem;margin-bottom:0.75rem;display:block}
.industry-item h4{font-size:0.88rem;font-weight:700;margin-bottom:0.3rem}
.industry-item p{font-size:0.77rem;color:var(--text-mid);line-height:1.6}

/* Footer */
.main-footer{background:var(--navy-dark);padding:4rem 0 1.75rem}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:3rem;padding-bottom:2.75rem;border-bottom:1px solid rgba(255,255,255,0.07)}
.footer-brand .f-name{font-family:'Inter',sans-serif;color:var(--white);font-size:1.2rem;font-weight:800;margin-bottom:0.65rem;display:block}
.footer-brand p{color:#5a6b84;font-size:0.8rem;line-height:1.72;margin-bottom:0.6rem}
.footer-col h5{color:var(--white);font-size:0.71rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:1.1rem}
.footer-col a{display:block;color:#5a6b84;font-size:0.8rem;margin-bottom:0.6rem;transition:color 0.2s;text-decoration:none}
.footer-col a:hover{color:var(--orange)}
.social-links{display:flex;gap:0.6rem;margin-top:1.25rem}
.social-link{width:34px;height:34px;background:rgba(255,255,255,0.06);border-radius:7px;display:flex;align-items:center;justify-content:center;color:#8a9bc0;font-size:0.75rem;font-weight:800;transition:all 0.2s;text-decoration:none}
.social-link:hover{background:var(--orange);color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1.5rem;flex-wrap:wrap;gap:0.5rem}
.footer-bottom p,.footer-bottom a{color:#3d4a60;font-size:0.75rem;text-decoration:none}
.footer-bottom a:hover{color:var(--orange)}

/* Responsive */
@media(max-width:900px){
  .home-hero h1{font-size:2.4rem}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .feature-row,.feature-row.flip{grid-template-columns:1fr;direction:ltr;gap:2rem}
  .contact-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  /* Switch to mobile nav */
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .mobile-menu{display:block}
  .main-nav{padding:0 1.25rem}
}
@media(max-width:640px){
  .container{padding:0 1.25rem}
  .section{padding:3.5rem 0}
  .section-title{font-size:1.65rem}
  .home-hero h1{font-size:1.9rem}
  .page-hero h1{font-size:2rem}
  .page-hero{padding:3.5rem 0 3rem}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .process-step{border-right:none;border-bottom:1px solid var(--border)}
  .process-step:last-child{border-bottom:none}
  .stats-row{grid-template-columns:1fr 1fr}
  .pricing-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .cta-inner{flex-direction:column;text-align:center}
  .hero-actions{justify-content:center;flex-direction:column;align-items:center}
  .page-hero-actions{flex-direction:column}
  .case-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:1fr}
  .industry-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:400px){
  .team-grid{grid-template-columns:1fr}
  .industry-grid{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
}
