
:root{
  --brand:#4B4C38;
  --brand2:#66684C;
  --brand3:#858766;
  --ink:#080906;
  --ink2:#10110D;
  --panel:#141510;
  --paper:#F4F1E9;
  --paper2:#FAF8F2;
  --white:#F7F6F1;
  --muted:#C6C3B8;
  --muted2:#8F8D82;
  --line:rgba(255,255,255,.12);
  --brandline:rgba(102,104,76,.62);
  --max:1440px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
.container{width:min(var(--max),calc(100% - 56px));margin:auto}
.section{padding:88px 0}
.eyebrow{
  color:var(--brand3);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2.15px;
  margin-bottom:11px;
}
h1,h2,h3,h4{
  margin:0;
  text-transform:uppercase;
  font-weight:800;
  line-height:1.02;
}
h1{font-size:clamp(56px,6.7vw,100px);letter-spacing:-2.4px}
h2{font-size:clamp(34px,4vw,58px);letter-spacing:-1.1px}
h3{font-size:20px}
p{color:var(--muted);line-height:1.65}
.lead{font-size:18px;max-width:720px}
.center{text-align:center}
.center .lead{margin:12px auto 0}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border:1px solid transparent;
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  transition:.2s ease;
  cursor:pointer;
}
.btn-primary{background:var(--brand);color:white}
.btn-primary:hover{background:var(--brand2);transform:translateY(-1px)}
.btn-outline{border-color:var(--brand2);color:white;background:transparent}
.btn-outline:hover{background:var(--brand);border-color:var(--brand)}
.btn-light{background:var(--paper);color:#111}
.btn-dark{background:#111;color:#fff}
.button-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(5,6,5,.97);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.header-inner{
  min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:34px
}
.brand img{width:205px}
.nav{display:flex;align-items:center;gap:34px}
.nav a{
  padding:31px 0 27px;
  border-bottom:2px solid transparent;
  font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.45px
}
.nav a:hover,.nav a.active{border-bottom-color:var(--brand2)}
.nav .connect-btn{
  border:1px solid var(--brand2)!important;
  border-bottom:1px solid var(--brand2)!important;
  padding:12px 18px!important;
  display:inline-flex;align-items:center;justify-content:center
}
.nav .connect-btn:hover{
  background:var(--brand);
  border:1px solid var(--brand)!important;
}

/* General hero */
.hero{
  min-height:690px;position:relative;display:flex;align-items:center;overflow:hidden;
  border-bottom:1px solid var(--brandline)
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(5,6,4,.96) 0%,rgba(5,6,4,.82) 35%,rgba(5,6,4,.30) 65%,rgba(5,6,4,.08) 100%)
}
.hero-content{position:relative;z-index:2;max-width:760px;padding:90px 0}
.hero h1 .accent{display:block;color:var(--brand2)}
.hero p{font-size:18px;max-width:680px;color:#E1DED3}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:12px;color:#B6B49F;
  font-size:11px;font-weight:800;letter-spacing:2.4px;text-transform:uppercase;margin-bottom:24px
}
.hero-eyebrow::before{content:"";width:34px;height:1px;background:var(--brand2)}
.hero-flow{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:26px;
  color:#9FA181;text-transform:uppercase;letter-spacing:1.4px;font-size:11px;font-weight:800
}

/* Home hero */
.home-hero{
  background:
    linear-gradient(0deg,rgba(0,0,0,.05),rgba(0,0,0,.05)),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;background-position:center 56%;
}

/* Dark cards */
.dark-section{
  background:
    radial-gradient(circle at 4% 20%,rgba(75,76,56,.18),transparent 25%),
    var(--ink);
}
.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:38px}
.card{
  border:1px solid var(--brandline);
  background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.005));
  padding:28px 24px;min-height:245px;transition:.22s ease
}
.card:hover{transform:translateY(-4px);background:rgba(75,76,56,.10)}
.icon{
  width:56px;height:56px;border:1px solid var(--brandline);
  display:grid;place-items:center;color:#999B72;margin-bottom:18px
}
.icon svg{width:30px;height:30px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.card h3{margin-bottom:10px}
.card p{font-size:14px;margin-bottom:0}

/* Home process */
.process-light{background:var(--paper);color:#171713}
.process-light p{color:#555548}
.process-light .eyebrow{color:var(--brand)}
.process-row{
  display:grid;grid-template-columns:repeat(9,auto);align-items:center;justify-content:space-between;gap:12px;margin-top:38px
}
.process-item{width:190px;text-align:center}
.process-circle{
  width:92px;height:92px;border-radius:50%;background:var(--brand);color:white;
  display:grid;place-items:center;margin:0 auto 15px
}
.process-circle svg{width:42px;height:42px;stroke:white;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.process-item h3{color:#151511;margin-bottom:7px}
.process-item p{font-size:13px;line-height:1.5}
.arrow{font-size:34px;color:var(--brand);transform:translateY(-30px)}

/* Industry cards */
.industry-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:38px}
.industry-card{min-height:320px;position:relative;overflow:hidden;border:1px solid var(--line)}
.industry-card .photo{position:absolute;inset:0;background-size:cover;background-position:center;transition:.3s}
.industry-card:hover .photo{transform:scale(1.045)}
.industry-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(4,5,4,.97),rgba(4,5,4,.30) 65%,rgba(4,5,4,.08))}
.industry-card .label{position:absolute;z-index:2;bottom:0;left:0;right:0;padding:22px;text-align:center;text-transform:uppercase;font-size:18px;font-weight:800}

/* Home pricing teaser */
.pricing-light{background:var(--paper);color:#171713}
.pricing-teaser{
  display:grid;grid-template-columns:1.1fr .9fr;background:white;box-shadow:0 18px 42px rgba(0,0,0,.09)
}
.pricing-teaser .copy{padding:52px}
.pricing-teaser p{color:#555548}
.pricing-teaser .side{
  padding:46px;background:
    radial-gradient(circle at 85% 15%,rgba(102,104,76,.38),transparent 25%),
    linear-gradient(135deg,#171812,#24251b);
  color:white
}
.price{font-size:64px;line-height:1;font-weight:800;margin:8px 0}
.price small{font-size:14px}
.clean-list{padding-left:18px;color:#D5D2C8;line-height:1.8}

/* About teaser */
.about-split{display:grid;grid-template-columns:.95fr 1.05fr;gap:46px;align-items:center}
.about-photo{
  min-height:430px;background:
  linear-gradient(to top,rgba(5,6,4,.40),rgba(5,6,4,.10)),
  url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;background-position:center;border:1px solid var(--line)
}
.statement{color:var(--brand3);font-size:38px;font-weight:800;text-transform:uppercase;line-height:1.05;margin:15px 0}

/* Services & Pricing */
.sp-hero{
  background:
    linear-gradient(0deg,rgba(0,0,0,.02),rgba(0,0,0,.02)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;background-position:center 55%;
}
.service-list{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:36px}
.service-strip{
  border:1px solid var(--brandline);display:grid;grid-template-columns:80px 1fr;gap:16px;align-items:center;
  padding:18px 22px;background:linear-gradient(90deg,rgba(75,76,56,.08),rgba(255,255,255,.01))
}
.service-strip .sicon{color:#A1A476}
.service-strip .sicon svg{width:42px;height:42px;stroke:currentColor;fill:none;stroke-width:1.5}
.service-strip h3{margin-bottom:5px}
.service-strip p{font-size:13px;margin:0}
.pricing-models{background:var(--paper);color:#191A16}
.pricing-models p{color:#555548}
.price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:36px}
.price-card{
  background:#fff;border:1px solid rgba(0,0,0,.08);padding:30px 24px;min-height:360px;
  box-shadow:0 14px 32px rgba(0,0,0,.06);display:flex;flex-direction:column
}
.price-card .round{
  width:58px;height:58px;border-radius:50%;background:var(--brand);color:white;display:grid;place-items:center;margin:-56px auto 22px;
  border:5px solid var(--paper)
}
.price-card h3{text-align:center;color:#292A21}
.price-card .big{text-align:center;font-size:38px;font-weight:800;margin:13px 0;color:#303126}
.price-card .sub{text-align:center;font-size:13px;color:#666658}
.price-card ul{color:#4B4C40;line-height:1.8;padding-left:19px;font-size:14px;flex:1}
.price-card .btn{width:100%}

/* Deep process */
.deep-process{
  background:
    radial-gradient(circle at 20% 30%,rgba(75,76,56,.14),transparent 22%),
    var(--ink)
}
.deep-row{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;margin-top:40px}
.deep-step{border-top:1px solid var(--brandline);padding-top:24px}
.deep-num{color:var(--brand3);font-size:13px;font-weight:800;margin-bottom:10px}
.deep-step h3{margin-bottom:9px}
.deep-step p{font-size:13px}
.deep-step ul{padding-left:18px;color:#B8B5A9;font-size:13px;line-height:1.7}

/* CTA strip */
.cta-strip{
  display:grid;grid-template-columns:.8fr 1.2fr;align-items:stretch;border:1px solid var(--brandline);margin-top:34px
}
.cta-image{
  min-height:250px;background:
    linear-gradient(to top,rgba(4,5,4,.30),rgba(4,5,4,.08)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=82");
  background-size:cover;background-position:center
}
.cta-copy{padding:38px;display:flex;flex-direction:column;justify-content:center}

/* Industries page */
.ind-hero{
  background:
    linear-gradient(0deg,rgba(0,0,0,.02),rgba(0,0,0,.02)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;background-position:center
}
.industry-feature-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:38px}
.industry-feature{border:1px solid var(--brandline);overflow:hidden;background:#10110d}
.industry-feature .visual{height:250px;background-size:cover;background-position:center}
.industry-feature .body{padding:20px}
.industry-feature h3{margin-bottom:8px}
.industry-feature p{font-size:13px}
.fit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:34px}
.fit-card{border:1px solid var(--brandline);padding:26px;background:rgba(255,255,255,.015)}
.fit-card h3{color:#EEECE5;margin-bottom:10px}
.adapt-list{margin-top:34px;display:grid;gap:10px}
.adapt-row{
  display:grid;grid-template-columns:80px 1.2fr 1.4fr;gap:18px;align-items:center;border:1px solid var(--brandline);padding:18px 22px
}
.adapt-row .n{color:var(--brand3);font-weight:800}
.adapt-row p{margin:0;font-size:14px}

/* About page */
.about-hero-simple{
  min-height:460px;display:flex;align-items:center;
  background:
    radial-gradient(circle at 78% 48%,rgba(75,76,56,.13),transparent 25%),
    repeating-radial-gradient(circle at 85% 50%,transparent 0 36px,rgba(75,76,56,.08) 37px 38px),
    var(--ink);
  border-bottom:1px solid var(--brandline)
}
.about-hero-simple .wrap{max-width:880px;padding:80px 0}
.timeline{background:#0B0C09}
.timeline-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:40px}
.time-card{border:1px solid var(--brandline);padding:25px;min-height:340px}
.time-card .years{color:var(--brand3);font-weight:800;letter-spacing:1px;font-size:13px;margin-bottom:14px}
.time-card h3{color:#9B9D73;margin-bottom:13px}
.time-card p{font-size:13px}
.time-card ul{padding-left:18px;color:#C7C4B8;font-size:13px;line-height:1.8}
.principles{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:32px}
.principle{border:1px solid var(--brandline);padding:28px;text-align:center}
.principle h3{color:#97996F;margin:12px 0 8px}
.founder{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:38px;align-items:center;border-top:1px solid var(--brandline);border-bottom:1px solid var(--brandline)
}
.founder-visual{
  min-height:360px;background:
    linear-gradient(to top,rgba(5,6,4,.18),rgba(5,6,4,.08)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=82");
  background-size:cover;background-position:center;position:relative
}
.mug-label{
  position:absolute;right:45px;bottom:50px;background:#070805;color:#fff;border-radius:50%;
  width:115px;height:115px;display:grid;place-items:center;text-align:center;padding:14px;
  font-size:15px;font-weight:800;line-height:1.05;border:1px solid rgba(255,255,255,.1)
}
.signature{font-family:cursive;color:#A5A775;font-size:38px;margin-top:12px}

/* Connect page */
.connect-main{
  background:
    radial-gradient(circle at 20% 30%,rgba(75,76,56,.13),transparent 25%),
    var(--ink)
}
.connect-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:44px;align-items:start}
.connect-intro h1{font-size:clamp(54px,6vw,88px)}
.trust-list{display:grid;gap:18px;margin-top:28px}
.trust-item{display:grid;grid-template-columns:58px 1fr;gap:16px;align-items:center}
.trust-badge{width:58px;height:58px;border-radius:50%;background:var(--brand);display:grid;place-items:center;font-weight:800}
.form-panel{border:1px solid var(--brandline);padding:34px;background:rgba(255,255,255,.018)}
.form-panel h2{font-size:26px;color:#9A9C72;margin-bottom:24px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
input,textarea{
  width:100%;background:#0C0D0A;color:white;border:1px solid rgba(255,255,255,.14);
  padding:15px;margin-bottom:12px;outline:none
}
input:focus,textarea:focus{border-color:var(--brand2)}
textarea{min-height:145px;resize:vertical}
.contact-band{
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  display:grid;grid-template-columns:1fr 1fr;gap:36px;padding:44px 0
}
.contact-band h3{color:#999B72;margin-bottom:16px}
.contact-band a{color:#E4E1D7}
.gallery{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:30px}
.gallery div{height:230px;background-size:cover;background-position:center;border:1px solid var(--line)}

/* Footer */
footer{background:#080906;border-top:1px solid rgba(255,255,255,.08);padding:42px 0 26px}
.footer-grid{display:grid;grid-template-columns:1.3fr .7fr .9fr .9fr;gap:36px}
.footer-logo{width:150px;margin-bottom:14px}
footer p,footer a{font-size:13px;color:#B8B5A9}
footer h4{color:#92946C;margin-bottom:13px}
.footer-links{display:grid;gap:7px}
.footer-bottom{
  margin-top:28px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;gap:20px;color:#77756C;font-size:11px
}
.socials{display:grid;gap:12px}
.social-link{display:flex;gap:10px;align-items:center}

/* Responsive */
@media(max-width:1200px){
  .nav{gap:20px}.brand img{width:175px}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .price-grid{grid-template-columns:repeat(2,1fr);row-gap:48px}
  .industry-grid,.industry-feature-grid{grid-template-columns:repeat(3,1fr)}
  .timeline-grid{grid-template-columns:repeat(2,1fr)}
  .deep-row{grid-template-columns:repeat(2,1fr)}
  .process-row{grid-template-columns:repeat(5,1fr)}.arrow{display:none}.process-item{width:auto}
}
@media(max-width:850px){
  .header-inner{flex-direction:column;padding:17px 0;min-height:auto}
  .nav{flex-wrap:wrap;justify-content:center;gap:7px 17px}.nav a{padding:5px 0}.nav .connect-btn{padding:9px 12px!important}
  .hero{min-height:650px;background-position:66% center}
  .about-split,.pricing-teaser,.founder,.connect-grid,.cta-strip{grid-template-columns:1fr}
  .process-row,.fit-grid,.principles{grid-template-columns:repeat(2,1fr)}
  .industry-grid,.industry-feature-grid{grid-template-columns:repeat(2,1fr)}
  .service-list{grid-template-columns:1fr}
  .adapt-row{grid-template-columns:55px 1fr}.adapt-row p{grid-column:2}
  .contact-band{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .container{width:min(var(--max),calc(100% - 24px))}
  .section{padding:60px 0}
  h1{font-size:47px}
  .hero{min-height:620px}
  .card-grid,.price-grid,.industry-grid,.industry-feature-grid,.timeline-grid,.principles,.process-row,.fit-grid,.deep-row,.footer-grid{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .button-row{flex-direction:column}.btn{width:100%}
  .gallery{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}


/* =========================================================
   FINAL DESIGN ALIGNMENT V3
   Brings coded pages closer to approved visual concepts
========================================================= */

/* SERVICES & PRICING — diagonal premium hero */
.sp-hero{
  background-image:url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;
  background-position:66% 52%;
}
.sp-hero::after{
  background:
    linear-gradient(105deg,
      rgba(7,8,6,1) 0%,
      rgba(7,8,6,.99) 34%,
      rgba(7,8,6,.94) 43%,
      rgba(7,8,6,.30) 58%,
      rgba(7,8,6,.08) 100%);
}
.sp-hero .hero-content{max-width:650px}
.sp-hero h1{max-width:630px}

/* Services list: closer to approved arrow-strip layout */
.service-list{
  gap:10px;
}
.service-strip{
  grid-template-columns:68px 42px 1fr;
  min-height:112px;
  padding:20px 24px;
  clip-path:polygon(0 0,96.5% 0,100% 50%,96.5% 100%,0 100%,2.5% 50%);
  background:
    linear-gradient(90deg,rgba(75,76,56,.14),rgba(255,255,255,.012));
}
.service-strip:nth-child(even){
  clip-path:polygon(3.5% 0,100% 0,97.5% 50%,100% 100%,3.5% 100%,0 50%);
}
.service-strip .svc-num{
  color:var(--brand3);
  font-weight:800;
  font-size:14px;
  text-align:center;
}
.service-strip .sicon{
  display:grid;
  place-items:center;
}
.service-strip .sicon svg{
  width:44px;
  height:44px;
}
.service-strip h3{font-size:19px}

/* Pricing cards */
.price-card{
  border-radius:0;
  padding-top:34px;
}
.price-card .round{
  width:62px;
  height:62px;
  font-size:20px;
  box-shadow:0 8px 18px rgba(0,0,0,.13);
}

/* Services deep process: icon-driven and arrow connected */
.deep-process .deep-row{
  position:relative;
  gap:18px;
}
.deep-process .deep-step{
  border-top:0;
  padding-top:0;
  position:relative;
}
.deep-process .deep-step:not(:last-child)::after{
  content:"→";
  position:absolute;
  right:-15px;
  top:35px;
  color:var(--brand3);
  font-size:28px;
  opacity:.75;
}
.deep-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  border:1px solid var(--brand3);
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:radial-gradient(circle,rgba(75,76,56,.24),rgba(8,9,6,.96));
  color:#fff;
}
.deep-icon svg{
  width:36px;
  height:36px;
  stroke:#fff;
  fill:none;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.deep-step .deep-num{
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:6px;
}
.deep-step h3{
  font-size:18px;
}

/* Services CTA image more relationship-focused */
.services-cta-image{
  min-height:250px;
  background:
    linear-gradient(to top,rgba(5,6,4,.35),rgba(5,6,4,.10)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;
  background-position:center;
}

/* INDUSTRIES — split visual hero */
.ind-hero{
  background:
    linear-gradient(90deg,rgba(8,9,6,1) 0%,rgba(8,9,6,.99) 36%,rgba(8,9,6,.90) 44%,rgba(8,9,6,.18) 62%,rgba(8,9,6,.06) 100%),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;
  background-position:70% 52%;
}
.ind-hero::before{
  content:"";
  position:absolute;
  inset:0 0 0 50%;
  background:
    linear-gradient(to left,rgba(7,8,6,.10),rgba(7,8,6,.05)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=82");
  background-size:cover;
  background-position:center;
  clip-path:polygon(18% 0,100% 0,100% 100%,0 100%);
  opacity:.35;
}
.ind-hero::after{
  background:linear-gradient(90deg,rgba(5,6,4,.98) 0%,rgba(5,6,4,.90) 37%,rgba(5,6,4,.34) 60%,rgba(5,6,4,.10) 100%);
}
.ind-hero .hero-content{max-width:610px}

/* Industry feature cards taller and more premium */
.industry-feature-grid{
  gap:10px;
}
.industry-feature{
  min-height:520px;
  display:flex;
  flex-direction:column;
}
.industry-feature .visual{
  height:330px;
}
.industry-feature .body{
  padding:23px 20px 25px;
  flex:1;
}
.industry-feature .industry-mini-icon{
  width:42px;
  height:42px;
  color:#A2A573;
  margin-bottom:14px;
}
.industry-feature .industry-mini-icon svg{
  width:100%;
  height:100%;
  stroke:currentColor;
  fill:none;
  stroke-width:1.5;
}
.industry-feature h3{
  font-size:21px;
}
.industry-feature p{
  font-size:14px;
}

/* Where ROPHON fits */
.fit-card .icon{
  width:62px;
  height:62px;
}
.fit-card h3{font-size:19px}

/* Adapt rows with visual flow */
.adapt-row{
  grid-template-columns:62px 54px 1.1fr 34px 1.35fr;
  min-height:82px;
}
.adapt-row .adapt-icon{
  color:#A1A474;
  display:grid;
  place-items:center;
}
.adapt-row .adapt-icon svg{
  width:34px;height:34px;
  stroke:currentColor;fill:none;stroke-width:1.5;
}
.adapt-row .adapt-chevron{
  color:#A1A474;
  font-size:24px;
  text-align:center;
}
.adapt-row p{grid-column:auto}

/* Industries CTA */
.industries-cta-image{
  min-height:260px;
  background:
    linear-gradient(to top,rgba(5,6,4,.28),rgba(5,6,4,.08)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;
  background-position:center;
}

/* ABOUT — connected timeline */
.timeline{
  position:relative;
}
.timeline-grid{
  position:relative;
  gap:18px;
  padding-top:72px;
}
.timeline-grid::before{
  content:"";
  position:absolute;
  left:7%;
  right:7%;
  top:35px;
  height:1px;
  background:var(--brand3);
  opacity:.65;
}
.time-card{
  position:relative;
  padding-top:38px;
}
.timeline-node{
  position:absolute;
  width:58px;
  height:58px;
  border-radius:50%;
  border:1px solid var(--brand3);
  background:#0A0B08;
  display:grid;
  place-items:center;
  top:-67px;
  left:50%;
  transform:translateX(-50%);
  color:#A3A674;
  z-index:2;
}
.timeline-node svg{
  width:29px;height:29px;
  stroke:currentColor;fill:none;stroke-width:1.5;
}
.time-card .years{
  position:absolute;
  top:-104px;
  left:0;
  right:0;
  text-align:center;
  color:#B1B37E;
}

/* About founder image closer to approved desk/mug treatment */
.founder-visual{
  background:
    linear-gradient(to top,rgba(5,6,4,.10),rgba(5,6,4,.02)),
    url("https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=1600&q=84");
  background-size:cover;
  background-position:center;
}
.mug-label{
  right:48px;
  bottom:52px;
  width:104px;
  height:78px;
  border-radius:6px 6px 14px 14px;
  padding:11px;
  font-size:13px;
  line-height:1.05;
  background:#050604;
  border:1px solid rgba(255,255,255,.08);
  z-index:2;
}
.mug-label::after{
  content:"";
  position:absolute;
  width:34px;
  height:40px;
  border:8px solid #050604;
  border-left:0;
  border-radius:0 28px 28px 0;
  right:-30px;
  top:17px;
}

/* CONNECT — approved left visual treatment */
.connect-intro{
  position:relative;
  min-height:600px;
  padding-bottom:220px;
}
.connect-intro::after{
  content:"";
  position:absolute;
  left:-70px;
  right:-30px;
  bottom:0;
  height:250px;
  background:
    linear-gradient(to top,rgba(8,9,6,.96),rgba(8,9,6,.10)),
    url("https://images.unsplash.com/photo-1516321165247-4aa89a48be28?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;
  background-position:center 58%;
  opacity:.48;
  pointer-events:none;
}
.connect-intro > *{
  position:relative;
  z-index:2;
}
.trust-badge{
  background:linear-gradient(135deg,var(--brand),var(--brand3));
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.form-panel{
  padding:40px;
}
.form-panel input,
.form-panel textarea{
  padding:17px;
}
.form-panel textarea{
  min-height:165px;
}

/* Contact band stronger separation */
.contact-band{
  padding:52px 0;
}

/* Gallery proportions closer to approved */
.gallery{
  gap:10px;
}
.gallery div{
  height:270px;
}

/* Footer polish */
footer{
  border-top:1px solid var(--brandline);
}


/* =========================================================
   FINAL POLISH V3.1
========================================================= */

/* INDUSTRIES HERO — simplified single-image treatment */
.ind-hero{
  background:
    linear-gradient(90deg,
      rgba(6,7,5,.99) 0%,
      rgba(6,7,5,.96) 34%,
      rgba(6,7,5,.78) 48%,
      rgba(6,7,5,.24) 69%,
      rgba(6,7,5,.08) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=88");
  background-size:cover;
  background-position:center 54%;
}
.ind-hero::before{
  display:none !important;
  content:none !important;
}
.ind-hero::after{
  background:
    linear-gradient(90deg,
      rgba(5,6,4,.97) 0%,
      rgba(5,6,4,.86) 38%,
      rgba(5,6,4,.34) 63%,
      rgba(5,6,4,.10) 100%);
}
.ind-hero .hero-content{
  max-width:620px;
}

/* LET'S CONNECT — aircraft becomes atmosphere, not content */
.connect-intro{
  min-height:610px;
  padding-bottom:245px;
}
.connect-intro::after{
  left:-45px;
  right:8%;
  bottom:-18px;
  height:205px;
  background:
    linear-gradient(
      to top,
      rgba(8,9,6,.98) 0%,
      rgba(8,9,6,.70) 28%,
      rgba(8,9,6,.18) 72%,
      rgba(8,9,6,.04) 100%
    ),
    url("https://images.unsplash.com/photo-1516321165247-4aa89a48be28?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;
  background-position:center 68%;
  opacity:.30;
  filter:saturate(.72) contrast(.93);
}
.trust-list{
  position:relative;
  z-index:3;
}
.trust-item{
  position:relative;
  z-index:3;
}

/* Mobile: remove decorative aircraft to preserve clarity */
@media(max-width:850px){
  .connect-intro{
    min-height:auto;
    padding-bottom:40px;
  }
  .connect-intro::after{
    display:none;
  }
}


/* =========================================================
   FINAL POLISH V3.2
========================================================= */

/* About founder mug text should feel printed directly on the mug */
.mug-label{
  left:132px;
  right:auto;
  bottom:108px;
  width:62px;
  height:62px;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  color:#1b1b17;
  font-weight:800;
  font-size:10px;
  line-height:1.02;
  letter-spacing:.1px;
  text-transform:none;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0;
}
.mug-label::after{
  display:none !important;
  content:none !important;
}

/* Slightly improve home industry CTA spacing */
.industry-grid + .button-row{
  margin-top:22px;
}


/* =========================================================
   FINAL POLISH V3.3
========================================================= */

/* SERVICES & PRICING — center process arrows between steps */
.deep-process .deep-row{
  gap:34px;
}
.deep-process .deep-step:not(:last-child)::after{
  right:-17px;
  top:39px;
  transform:translate(50%,-50%);
  line-height:1;
  width:28px;
  text-align:center;
}

/* LET'S CONNECT — replace faded aircraft with a clean relationship visual */
.connect-intro{
  padding-bottom:250px;
}
.connect-intro::after{
  left:0;
  right:6%;
  bottom:0;
  height:205px;
  background:
    linear-gradient(rgba(8,9,6,.22),rgba(8,9,6,.22)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1400&q=84");
  background-size:cover;
  background-position:center;
  opacity:.72;
  filter:saturate(.78) contrast(.96);
  border:1px solid rgba(255,255,255,.08);
}

/* Keep copy visually separated from the image */
.trust-list{
  margin-bottom:26px;
}

@media(max-width:1200px){
  .deep-process .deep-row{
    gap:22px;
  }
  .deep-process .deep-step:not(:last-child)::after{
    display:none;
  }
}


/* IMAGE REFRESH V4 */
.connect-intro::after{
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}


/* FORM SUCCESS PAGE — V4.2 */
.thank-you-section{
  min-height:calc(100vh - 170px);
  display:flex;
  align-items:center;
  text-align:center;
}
.thank-you-wrap{
  max-width:760px;
}
.thank-you-wrap .eyebrow{
  margin-bottom:18px;
}
.thank-you-wrap h1{
  max-width:720px;
  margin:0 auto 22px;
}
.thank-you-wrap p{
  max-width:650px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.thank-you-wrap .button-row{
  justify-content:center;
}
