/* ===== SELF-HOSTED FONTS ===== */
@font-face{font-family:'DM Sans';font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/dm-sans-regular.woff2) format('woff2')}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/dm-sans-regular.woff2) format('woff2')}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/dm-sans-regular.woff2) format('woff2')}
@font-face{font-family:'DM Sans';font-style:italic;font-weight:400;font-display:swap;src:url(/fonts/dm-sans-italic.woff2) format('woff2')}

/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:17px;-webkit-text-size-adjust:100%}
body{font-family:'DM Sans',Arial,Helvetica,sans-serif;color:#1a1a2e;background:#e3e3e3;line-height:1.75;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#1a5276;text-decoration:none;transition:color .2s}
a:hover{color:#e67e22}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea{font-family:inherit;font-size:1rem}

/* ===== UTILITIES ===== */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.section{padding:5rem 0}
.section--white{background:#fff}
.section--light{background:#f7f7f7}
.section--grey{background:#e3e3e3}
.section__title{font-size:clamp(2rem,4vw,2.75rem);font-weight:700;color:#1a1a2e;margin-bottom:1.5rem;line-height:1.2}
.section__title--center{text-align:center}
.section__desc{text-align:center;max-width:720px;margin:0 auto 2.5rem;color:#444;font-size:1.15rem;line-height:1.8}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:15px 34px;font-size:1.05rem;font-weight:600;border-radius:6px;transition:all .25s;white-space:nowrap;text-decoration:none}
.btn--primary{background:#e67e22;color:#fff}
.btn--primary:hover{background:#d35400;color:#fff}
.btn--sm{padding:10px 22px;font-size:.9rem}
.btn--cta{background:#e67e22;color:#fff;width:100%;padding:17px;font-size:1.1rem;font-weight:700;border-radius:6px;border:none;cursor:pointer;transition:background .25s}
.btn--cta:hover{background:#d35400}
.btn--outline-white{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.5);padding:12px 28px;border-radius:6px}
.btn--outline-white:hover{background:rgba(255,255,255,.1);color:#fff}
.badge{display:inline-block;background:#e67e22;color:#fff;font-size:.65rem;font-weight:700;padding:2px 6px;border-radius:3px;margin-left:6px;vertical-align:middle;text-transform:uppercase;letter-spacing:.5px}

/* ===== HEADER ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.06);transition:box-shadow .3s}
.header--scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:90px}
.logo{text-decoration:none;display:flex;align-items:center}
.logo__text{font-size:1.6rem;font-weight:700;color:#1a1a2e;letter-spacing:-.02em}
.logo__accent{color:#e67e22}
.logo__img{height:140px;width:auto}

/* Nav */
.nav__list{display:flex;align-items:center;gap:0}
.nav__item{position:relative}
.nav__link{display:flex;align-items:center;gap:4px;padding:8px 16px;font-size:1rem;font-weight:500;color:#333;text-decoration:none;transition:color .2s}
.nav__link:hover{color:#e67e22}
.nav__chevron{transition:transform .2s;flex-shrink:0}

/* Dropdown */
.nav__sub{position:absolute;top:100%;left:0;min-width:220px;background:#fff;border-radius:8px;box-shadow:0 8px 30px rgba(0,0,0,.12);padding:8px 0;opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s}
.nav__item--has-sub:hover .nav__sub{opacity:1;visibility:visible;transform:translateY(0)}
.nav__item--has-sub:hover .nav__chevron{transform:rotate(180deg)}
.nav__sub li a{display:block;padding:10px 20px;font-size:.95rem;color:#333;transition:all .15s}
.nav__sub li a:hover{background:#f5f5f5;color:#e67e22}

.header__actions{display:flex;align-items:center;gap:1.25rem}
.header__phone{font-size:.9rem;font-weight:600;color:#1a5276;white-space:nowrap}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;width:40px}
.hamburger span{display:block;width:100%;height:2px;background:#333;border-radius:2px;transition:all .3s}
.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{position:relative;background:#1a1a2e;padding:10rem 0 5rem;overflow:hidden;min-height:85vh;display:flex;align-items:center}
.hero__bg{position:absolute;inset:0;background:#1a1a2e;z-index:0}
.hero__bg-img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.25}
.hero__bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,13,26,.85) 0%,rgba(26,26,46,.7) 40%,rgba(30,42,58,.6) 100%);z-index:1}
.hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.hero__content{color:#fff}
.hero__top-nav{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem}
.hero__nav-pill{display:inline-block;padding:8px 20px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.8);font-size:.85rem;font-weight:500;border-radius:999px;transition:all .2s;text-decoration:none}
.hero__nav-pill:hover{background:rgba(230,126,34,.2);border-color:rgba(230,126,34,.4);color:#fff}
.hero__title{font-size:clamp(1.75rem,3.5vw,2.75rem);font-weight:700;color:#fff;line-height:1.2;margin-bottom:.5rem}
.hero__typed-wrap{font-size:clamp(1.75rem,3.5vw,2.75rem);font-weight:700;color:#e67e22;margin-bottom:1.5rem;min-height:1.3em}
.hero__typed{display:inline}
.hero__typed::after{content:'|';animation:blink .8s infinite;margin-left:2px;color:#e67e22}
@keyframes blink{0%,50%{opacity:1}51%,100%{opacity:0}}
.hero__subtitle{font-size:1.15rem;color:rgba(255,255,255,.75);line-height:1.85;max-width:540px}

/* Hero Form */
.hero__form-wrap{background:#fff;border-radius:16px;padding:2.5rem;box-shadow:0 20px 60px rgba(0,0,0,.2)}
.hero__form{display:flex;flex-direction:column;gap:1rem}
.hero__form input,.hero__form textarea{width:100%;padding:16px 18px;border:1px solid #ddd;border-radius:8px;font-size:1rem;transition:border-color .2s;background:#fff;color:#333}
.hero__form input:focus,.hero__form textarea:focus{outline:none;border-color:#e67e22;box-shadow:0 0 0 3px rgba(230,126,34,.1)}
.hero__form textarea{resize:vertical;min-height:80px}

/* ===== AWARDS BAR ===== */
.awards{background:#fff;padding:1.5rem 0;border-bottom:1px solid #eee}
.awards__badges{display:flex;justify-content:center;align-items:center;gap:2.5rem;flex-wrap:wrap}
.awards__badge{font-size:.85rem;font-weight:600;color:#888;text-transform:uppercase;letter-spacing:.5px}
.awards__img{max-width:100%;height:auto;max-height:80px;margin:0 auto}

/* ===== TRANSPARENCY ===== */
.transparency{text-align:center;padding:3rem 0}
.transparency__certified{font-size:1.2rem;color:#555;margin-bottom:1.5rem}
.transparency__badges{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}
.partner-badge{display:inline-flex;align-items:center;padding:8px 20px;background:#f5f5f5;border:1px solid #ddd;border-radius:6px;font-size:.85rem;font-weight:600;color:#555}
.partner-badge--sm{padding:6px 14px;font-size:.8rem}
.partner-badge-img{height:80px;width:auto}

/* ===== ABOUT SPLIT ===== */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.about-split__title{font-size:clamp(2rem,4vw,3rem);font-weight:700;color:#1a5276;margin-bottom:1rem;line-height:1.15}
.about-split p{font-size:1.15rem;color:#444;line-height:1.85}

/* ===== SERVICES GRID ===== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.service-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:3rem 2rem;background:#fff;border-radius:12px;border:1px solid #eee;transition:all .3s;text-decoration:none;color:inherit}
.service-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08);border-color:#e67e22}
.service-card__icon{margin-bottom:1.5rem;width:80px;height:80px;display:flex;align-items:center;justify-content:center;background:#f8f9fa;border-radius:16px}
.service-card__icon img{width:60px;height:60px;object-fit:contain}
.service-card__title{font-size:1.2rem;font-weight:600;color:#1a5276}

/* ===== TABS ===== */
.tabs__nav{display:flex;gap:0;margin-bottom:2rem;border-bottom:2px solid #ddd}
.tabs__btn{padding:14px 28px;font-size:1.05rem;font-weight:600;color:#666;background:none;border:none;border-bottom:3px solid transparent;margin-bottom:-2px;cursor:pointer;transition:all .2s}
.tabs__btn.active,.tabs__btn:hover{color:#1a5276;border-bottom-color:#e67e22}
.tabs__panel{display:none}
.tabs__panel.active{display:block}
.tabs__panel p{font-size:1.15rem;color:#444;line-height:1.85;max-width:800px}

/* ===== CEO SECTION ===== */
.section--dark-gradient{background:linear-gradient(135deg,#0d0d1a,#1a1a2e,#1e2a3a);color:#fff;padding:6rem 0}
.ceo-split{display:grid;grid-template-columns:auto 1fr;gap:4rem;align-items:center}
.ceo-split__img-placeholder{width:280px;height:340px;background:linear-gradient(135deg,#2a2a4a,#1a1a2e);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:4rem;font-weight:700;color:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.1)}
.ceo-split__img{width:280px;height:auto;border-radius:16px;object-fit:cover;border:1px solid rgba(255,255,255,.1)}
.ceo-split__quote{font-size:clamp(1.5rem,2.5vw,2rem);font-weight:700;line-height:1.35;margin-bottom:2rem}
.ceo-split__pink{color:#e91e90}
.ceo-split__magenta{color:#c71585}
.ceo-split__white{color:#fff}
.ceo-split__content p{color:rgba(255,255,255,.75);margin-bottom:1rem;line-height:1.85;font-size:1.1rem}
.ceo-split__name{font-size:1.5rem;font-weight:700;color:#fff;margin-top:2rem;margin-bottom:.75rem}
.ceo-split__cta{margin-bottom:.75rem;display:inline-block}
.ceo-split__title{color:rgba(255,255,255,.5);font-size:.9rem}

/* ===== VALUE PROPS ===== */
.value-props-layout{display:grid;grid-template-columns:1fr 400px;gap:4rem;align-items:start}
.value-props__text{display:flex;flex-direction:column;gap:0}
.intro-text{margin-bottom:2.5rem}
.intro-text p{font-size:1.15rem;color:#444;line-height:1.85}
.value-item{margin-bottom:2rem;padding:2rem;background:#fff;border-radius:12px;border:1px solid #ddd}
.value-item h3{font-size:1.35rem;font-weight:700;color:#1a1a2e;margin-bottom:.75rem}
.value-item p{color:#444;line-height:1.85;font-size:1.05rem}
.value-props__image{position:sticky;top:100px;display:flex;flex-direction:column;gap:2rem}
.value-props__photo{width:100%;border-radius:16px;object-fit:cover;max-height:400px}
.expect-block{text-align:center;padding:1.5rem 0}
.expect-split__pink{color:#e91e90;font-size:clamp(1.25rem,2.5vw,1.75rem);font-weight:600;display:block}
.expect-split__big{font-size:clamp(2rem,4vw,3rem);font-weight:800;color:#1a1a2e;line-height:1.1;margin-top:.5rem;display:block}

/* ===== HAPPY CLIENTS ===== */
.clients-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:2.5rem}
.client-logo{display:flex;align-items:center;justify-content:center;padding:2rem;background:#f8f9fa;border-radius:10px;font-size:1.1rem;font-weight:600;color:#888;border:1px solid #eee;transition:all .2s;min-height:80px}
.client-logo:hover{border-color:#e67e22;color:#1a5276}
.client-logo img{max-width:100%;max-height:50px;object-fit:contain;filter:grayscale(30%);transition:filter .2s}
.client-logo:hover img{filter:grayscale(0%)}

/* ===== BLOG / INSIGHTS ===== */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.blog-card{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #eee;transition:all .3s}
.blog-card:hover{box-shadow:0 8px 30px rgba(0,0,0,.08);transform:translateY(-2px)}
.blog-card__img{height:200px;position:relative;overflow:hidden}
.blog-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.blog-card:hover .blog-card__img img{transform:scale(1.05)}
.blog-card__body{padding:1.5rem}
.blog-card__body h3{font-size:1.15rem;font-weight:600;line-height:1.45;margin-bottom:.75rem}
.blog-card__body h3 a{color:#1a1a2e;text-decoration:none;transition:color .2s}
.blog-card__body h3 a:hover{color:#e67e22}
.blog-card__body p{color:#555;font-size:1rem;line-height:1.7}

/* ===== FAQ / ACCORDION ===== */
.accordion{max-width:800px;margin:0 auto}
.accordion__item{border-bottom:1px solid #ddd;background:#fff;margin-bottom:0}
.accordion__item:first-child{border-radius:8px 8px 0 0}
.accordion__item:last-child{border-radius:0 0 8px 8px;border-bottom:none}
.accordion__header{display:flex;align-items:center;justify-content:space-between;width:100%;padding:1.25rem 1.5rem;font-size:1.15rem;font-weight:600;color:#1a1a2e;text-align:left;cursor:pointer;background:none;border:none;transition:color .2s}
.accordion__header:hover{color:#e67e22}
.accordion__icon{transition:transform .3s;flex-shrink:0}
.accordion__item.open .accordion__icon{transform:rotate(180deg)}
.accordion__body{max-height:0;overflow:hidden;transition:max-height .35s ease;padding:0 1.5rem}
.accordion__item.open .accordion__body{max-height:600px;padding-bottom:1.5rem}
.accordion__body p{color:#444;line-height:1.8;margin-bottom:.75rem;font-size:1.05rem}
.accordion__body ul{padding-left:1.5rem;margin-bottom:1rem}
.accordion__body li{color:#444;margin-bottom:.4rem;list-style:disc;font-size:1.05rem}

/* ===== FOOTER ===== */
.footer__logo{margin-bottom:1.5rem}
.footer__logo img{height:56px;width:auto}
.footer{background:#f5f5f5;color:#333;padding:4rem 0 2rem;border-top:1px solid #ddd}
.footer__top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer__addresses{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem}
.footer__address{font-size:.95rem;line-height:1.7;color:#555}
.footer__address strong{color:#1a1a2e}
.footer__social{display:flex;gap:.75rem;margin-bottom:1.5rem}
.footer__social-link{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(0,0,0,.08);color:#333;transition:all .2s}
.footer__social-link:hover{background:#e67e22;color:#fff}
.footer__rating{margin-bottom:1rem}
.footer__stars{color:#e67e22;font-size:1.1rem;margin-bottom:.25rem;letter-spacing:2px}
.footer__rating span{font-size:.85rem;color:#555}
.footer__badges{display:flex;gap:.75rem;flex-wrap:wrap}
.footer__badge-img{height:60px;width:auto}
.footer__col h4{color:#1a1a2e;font-size:1.1rem;font-weight:600;margin-bottom:1.25rem}
.footer__col ul{display:flex;flex-direction:column;gap:.6rem}
.footer__col a{color:#555;font-size:.95rem;text-decoration:none;transition:color .2s}
.footer__col a:hover{color:#e67e22}
.footer__legal-links{margin-top:1.5rem;display:flex;flex-direction:column;gap:.5rem}
.footer__bottom{border-top:1px solid #ddd;padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer__bottom p{font-size:.85rem;color:#888}
.footer__bottom-links{display:flex;gap:1.5rem}
.footer__bottom-links a{color:#888;font-size:.85rem;text-decoration:none}
.footer__bottom-links a:hover{color:#e67e22}

/* ===== MODAL ===== */
.modal{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all .3s}
.modal.open{opacity:1;visibility:visible}
.modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(4px)}
.modal__dialog{position:relative;background:#fff;border-radius:16px;width:90%;max-width:800px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 60px rgba(0,0,0,.3);transform:translateY(20px);transition:transform .3s}
.modal.open .modal__dialog{transform:translateY(0)}
.modal__close{position:absolute;top:16px;right:16px;font-size:1.75rem;color:#999;z-index:1;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .2s}
.modal__close:hover{background:#f5f5f5;color:#333}
.modal__split{display:grid;grid-template-columns:1fr 1fr}
.modal__info{background:#1a1a2e;color:#fff;padding:3rem;border-radius:16px 0 0 16px;display:flex;flex-direction:column;justify-content:center}
.modal__logo{font-size:1.8rem;font-weight:700;margin-bottom:1.5rem}
.modal__logo span{color:#e67e22}
.modal__logo-img{max-width:180px;height:auto;margin-bottom:1.5rem}
.modal__tagline{font-size:1.1rem;color:rgba(255,255,255,.8);margin-bottom:1.5rem}
.modal__perks{display:flex;flex-direction:column;gap:.75rem}
.modal__perks li{color:rgba(255,255,255,.7);font-size:.95rem;padding-left:1.5rem;position:relative}
.modal__perks li::before{content:'✓';position:absolute;left:0;color:#e67e22;font-weight:700}
.modal__form-wrap{padding:3rem}
.modal__form-wrap h3{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem}
.modal__form{display:flex;flex-direction:column;gap:1rem}
.modal__form input,.modal__form textarea{width:100%;padding:14px 16px;border:1px solid #ddd;border-radius:8px;font-size:1rem;transition:border-color .2s}
.modal__form input:focus,.modal__form textarea:focus{outline:none;border-color:#e67e22;box-shadow:0 0 0 3px rgba(230,126,34,.1)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .nav{display:none}
  .nav.open{display:flex;position:absolute;top:72px;left:0;right:0;background:#fff;flex-direction:column;padding:1rem;border-bottom:1px solid #eee;box-shadow:0 8px 20px rgba(0,0,0,.08)}
  .nav.open .nav__list{flex-direction:column;width:100%}
  .nav.open .nav__item{width:100%}
  .nav.open .nav__link{padding:12px 16px}
  .nav.open .nav__sub{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;padding-left:1rem;display:none}
  .nav.open .nav__item--has-sub.open .nav__sub{display:block}
  .hamburger{display:flex}
  .header__phone{display:none}
  .hero__inner{grid-template-columns:1fr;text-align:center}
  .hero__subtitle{margin:0 auto 2rem}
  .hero__top-nav{justify-content:center}
  .hero__form-wrap{max-width:480px;margin:0 auto}
  .about-split{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .ceo-split{grid-template-columns:1fr;text-align:center}
  .ceo-split__img-placeholder{margin:0 auto}
  .ceo-split__img{margin:0 auto}
  .value-props-layout{grid-template-columns:1fr}
  .value-props__image{position:static}
  .clients-grid{grid-template-columns:repeat(3,1fr)}
  .blog-grid{grid-template-columns:1fr}
  .footer__top{grid-template-columns:1fr 1fr}
  .modal__split{grid-template-columns:1fr}
  .modal__info{border-radius:16px 16px 0 0}
}
@media(max-width:640px){
  .section{padding:3.5rem 0}
  .hero{padding:7rem 0 3rem;min-height:auto}
  .hero__title{font-size:1.75rem}
  .hero__typed-wrap{font-size:1.75rem}
  .services-grid{grid-template-columns:1fr}
  .clients-grid{grid-template-columns:repeat(2,1fr)}
  .footer__top{grid-template-columns:1fr}
  .tabs__nav{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .tabs__btn{white-space:nowrap;padding:12px 20px;font-size:.9rem}
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{position:relative;background:linear-gradient(135deg,#0d0d1a 0%,#1a1a2e 40%,#1e2a3a 100%);padding:8rem 0 4rem;text-align:center;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.page-hero__title{font-size:clamp(2rem,5vw,3.25rem);font-weight:800;color:#fff;margin-bottom:1rem;line-height:1.15}
.page-hero__subtitle{font-size:1.2rem;color:rgba(255,255,255,.7);max-width:640px;margin:0 auto;line-height:1.8}
.page-hero__accent{color:#e67e22}

/* ===== BREADCRUMB ===== */
.breadcrumb{padding:.75rem 0;font-size:.85rem;color:#888}
.breadcrumb a{color:#1a5276;text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:#e67e22}
.breadcrumb__sep{margin:0 .5rem;color:#bbb}

/* ===== PAGE CONTENT ===== */
.page-content{padding:4rem 0}
.page-content--tight{padding:3rem 0}

/* ===== CONTENT BLOCK ===== */
.content-block{margin-bottom:3rem}
.content-block__title{font-size:clamp(1.5rem,3vw,2rem);font-weight:700;color:#1a1a2e;margin-bottom:1rem;line-height:1.25}
.content-block__text{font-size:1.15rem;color:#444;line-height:1.9;margin-bottom:1.25rem}
.content-block__text strong{color:#1a1a2e}

/* ===== INTRO SPLIT (text + image side by side) ===== */
.intro-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;margin-bottom:4rem}
.intro-split--reverse{direction:rtl}
.intro-split--reverse>*{direction:ltr}
.intro-split__img{border-radius:16px;width:100%;height:auto;object-fit:cover;box-shadow:0 20px 50px rgba(0,0,0,.1)}

/* ===== FEATURES GRID ===== */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-bottom:3rem}
.feature-card{padding:2.5rem 2rem;background:#fff;border-radius:14px;border:1px solid #eee;transition:all .3s;position:relative;overflow:hidden}
.feature-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#e67e22,#e91e90);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08)}
.feature-card:hover::before{transform:scaleX(1)}
.feature-card__icon{width:56px;height:56px;background:linear-gradient(135deg,#fff5eb,#ffecd2);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;font-size:1.5rem}
.feature-card__title{font-size:1.2rem;font-weight:700;color:#1a1a2e;margin-bottom:.75rem}
.feature-card__desc{font-size:1.05rem;color:#555;line-height:1.75}

/* ===== PROCESS STEPS ===== */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin:3rem 0;counter-reset:step-counter}
.process-step{position:relative;text-align:center;padding:2rem 1.5rem}
.process-step::before{counter-increment:step-counter;content:counter(step-counter,decimal-leading-zero);display:flex;align-items:center;justify-content:center;width:56px;height:56px;background:#1a1a2e;color:#e67e22;font-size:1.25rem;font-weight:800;border-radius:50%;margin:0 auto 1.25rem}
.process-step::after{content:'';position:absolute;top:28px;left:calc(50% + 32px);width:calc(100% - 64px);height:2px;background:linear-gradient(90deg,#e67e22,transparent);display:block}
.process-step:last-child::after{display:none}
.process-step__title{font-size:1.15rem;font-weight:700;color:#1a1a2e;margin-bottom:.5rem}
.process-step__desc{font-size:1rem;color:#555;line-height:1.7}

/* ===== STATS ROW ===== */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin:3rem 0}
.stat-item{text-align:center;padding:2rem 1rem}
.stat-item__number{font-size:clamp(2rem,4vw,3rem);font-weight:800;color:#e67e22;line-height:1;margin-bottom:.5rem}
.stat-item__label{font-size:1.05rem;font-weight:500;color:#555}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,#0d0d1a,#1a1a2e,#1e2a3a);border-radius:20px;padding:4rem 3rem;text-align:center;margin:3rem 0;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;background:radial-gradient(circle,rgba(230,126,34,.15),transparent 70%);border-radius:50%}
.cta-banner__title{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:800;color:#fff;margin-bottom:1rem;position:relative}
.cta-banner__text{color:rgba(255,255,255,.75);font-size:1.15rem;margin-bottom:2rem;max-width:620px;margin-left:auto;margin-right:auto;position:relative;line-height:1.8}
.cta-banner .btn{position:relative}

/* ===== CONTACT GRID ===== */
.contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:start}
.contact-form{background:#fff;padding:2.5rem;border-radius:16px;border:1px solid #eee;box-shadow:0 4px 20px rgba(0,0,0,.04)}
.contact-form label{display:block;font-size:1rem;font-weight:600;color:#1a1a2e;margin-bottom:.5rem}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:14px 16px;border:1px solid #ddd;border-radius:8px;font-size:1rem;transition:border-color .2s;margin-bottom:1.25rem;background:#fff;color:#333}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{outline:none;border-color:#e67e22;box-shadow:0 0 0 3px rgba(230,126,34,.1)}
.contact-form textarea{resize:vertical;min-height:120px}
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-info__item{display:flex;gap:1rem;align-items:flex-start;padding:1.5rem;background:#fff;border-radius:12px;border:1px solid #eee}
.contact-info__icon{width:44px;height:44px;background:linear-gradient(135deg,#fff5eb,#ffecd2);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0}
.contact-info__text h4{font-size:1rem;font-weight:600;color:#1a1a2e;margin-bottom:.25rem}
.contact-info__text p{font-size:1rem;color:#555;line-height:1.7}
.contact-info__text a{color:#1a5276}
.contact-info__text a:hover{color:#e67e22}

/* ===== OFFICE CARDS ===== */
.offices-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:3rem 0}
.office-card{background:#fff;border-radius:14px;padding:2rem;border:1px solid #eee;transition:all .3s;position:relative}
.office-card::before{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#e67e22,#e91e90);border-radius:0 0 14px 14px;transform:scaleX(0);transform-origin:left;transition:transform .3s}
.office-card:hover{box-shadow:0 8px 30px rgba(0,0,0,.06)}
.office-card:hover::before{transform:scaleX(1)}
.office-card__flag{font-size:2rem;margin-bottom:1rem}
.office-card__city{font-size:1.2rem;font-weight:700;color:#1a1a2e;margin-bottom:.5rem}
.office-card__address{font-size:.9rem;color:#666;line-height:1.6;margin-bottom:.75rem}
.office-card__phone{font-size:.9rem;font-weight:600;color:#1a5276}

/* ===== JOB CARDS ===== */
.jobs-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
.job-card{background:#fff;border-radius:12px;padding:2rem 2.5rem;border:1px solid #eee;display:flex;align-items:center;justify-content:space-between;gap:2rem;transition:all .3s}
.job-card:hover{border-color:#e67e22;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.job-card__info h3{font-size:1.15rem;font-weight:700;color:#1a1a2e;margin-bottom:.5rem}
.job-card__meta{display:flex;gap:1.5rem;flex-wrap:wrap}
.job-card__tag{display:inline-flex;align-items:center;gap:.35rem;font-size:.85rem;color:#666}
.job-card__tag svg{width:14px;height:14px;color:#e67e22}

/* ===== TEAM GRID ===== */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin:3rem 0}
.team-member{text-align:center}
.team-member__photo{width:120px;height:120px;border-radius:50%;background:linear-gradient(135deg,#e3e3e3,#f5f5f5);margin:0 auto 1rem;overflow:hidden;border:3px solid #fff;box-shadow:0 4px 15px rgba(0,0,0,.1)}
.team-member__photo img{width:100%;height:100%;object-fit:cover}
.team-member__name{font-size:1rem;font-weight:700;color:#1a1a2e;margin-bottom:.25rem}
.team-member__role{font-size:.85rem;color:#666}

/* ===== TESTIMONIAL ===== */
.testimonial-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;margin:3rem 0}
.testimonial-card{background:#fff;border-radius:14px;padding:2.5rem;border:1px solid #eee;position:relative}
.testimonial-card::before{content:'\201C';position:absolute;top:1rem;left:1.5rem;font-size:4rem;color:#e67e22;opacity:.2;font-family:Georgia,serif;line-height:1}
.testimonial-card__text{font-size:1.1rem;color:#444;line-height:1.85;margin-bottom:1.5rem;position:relative;z-index:1}
.testimonial-card__author{display:flex;align-items:center;gap:1rem}
.testimonial-card__avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,#e67e22,#e91e90);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1rem}
.testimonial-card__name{font-size:1.05rem;font-weight:600;color:#1a1a2e}
.testimonial-card__company{font-size:.9rem;color:#888}

/* ===== CASE STUDY CARDS ===== */
.case-studies-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:2rem 0}
.case-card{background:#fff;border-radius:14px;overflow:hidden;border:1px solid #eee;transition:all .3s}
.case-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08)}
.case-card__img{height:220px;overflow:hidden;position:relative}
.case-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.case-card:hover .case-card__img img{transform:scale(1.05)}
.case-card__overlay{position:absolute;bottom:0;left:0;right:0;padding:1rem 1.5rem;background:linear-gradient(transparent,rgba(0,0,0,.7))}
.case-card__industry{display:inline-block;padding:4px 12px;background:rgba(230,126,34,.9);color:#fff;font-size:.75rem;font-weight:600;border-radius:4px;text-transform:uppercase;letter-spacing:.5px}
.case-card__body{padding:1.5rem}
.case-card__title{font-size:1.1rem;font-weight:700;color:#1a1a2e;margin-bottom:.75rem;line-height:1.4}
.case-card__result{display:flex;gap:2rem;margin-bottom:1rem}
.case-card__metric{font-size:.85rem;color:#666}
.case-card__metric strong{color:#e67e22;font-size:1.1rem;display:block}
.case-card__link{font-size:.9rem;font-weight:600;color:#1a5276;display:inline-flex;align-items:center;gap:.35rem;transition:color .2s}
.case-card__link:hover{color:#e67e22}

/* ===== BLOG LISTING (extended) ===== */
.blog-listing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:2rem 0}
.blog-listing-card{background:#fff;border-radius:14px;overflow:hidden;border:1px solid #eee;transition:all .3s;text-decoration:none;color:inherit;display:block}
.blog-listing-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.08)}
.blog-listing-card__img{height:200px;overflow:hidden}
.blog-listing-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.blog-listing-card:hover .blog-listing-card__img img{transform:scale(1.05)}
.blog-listing-card__body{padding:1.5rem}
.blog-listing-card__cat{font-size:.75rem;font-weight:600;color:#e67e22;text-transform:uppercase;letter-spacing:.5px;margin-bottom:.5rem}
.blog-listing-card__title{font-size:1.15rem;font-weight:700;color:#1a1a2e;margin-bottom:.5rem;line-height:1.45;transition:color .2s}
.blog-listing-card:hover .blog-listing-card__title{color:#e67e22}
.blog-listing-card__excerpt{font-size:1rem;color:#555;line-height:1.7;margin-bottom:1rem}
.blog-listing-card__meta{font-size:.8rem;color:#999;display:flex;gap:1rem}

/* ===== LEGAL CONTENT ===== */
.legal-content{max-width:800px;margin:0 auto}
.legal-content h2{font-size:1.5rem;font-weight:700;color:#1a1a2e;margin:2.5rem 0 1rem;padding-top:1.5rem;border-top:1px solid #eee}
.legal-content h2:first-child{border-top:none;padding-top:0;margin-top:0}
.legal-content h3{font-size:1.15rem;font-weight:600;color:#1a1a2e;margin:1.5rem 0 .75rem}
.legal-content p{font-size:1.1rem;color:#444;line-height:1.9;margin-bottom:1.15rem}
.legal-content ul,.legal-content ol{padding-left:1.5rem;margin-bottom:1rem}
.legal-content li{color:#444;line-height:1.85;margin-bottom:.5rem;list-style:disc;font-size:1.1rem}
.legal-content ol li{list-style:decimal}
.legal-content a{color:#1a5276;text-decoration:underline}
.legal-content strong{color:#1a1a2e}

/* ===== VALUE GRID (Why Us) ===== */
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:3rem 0}
.value-card{text-align:center;padding:2.5rem 2rem;background:#fff;border-radius:14px;border:1px solid #eee;transition:all .3s}
.value-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.value-card__icon{width:64px;height:64px;background:linear-gradient(135deg,#fff5eb,#ffecd2);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;font-size:1.75rem}
.value-card__title{font-size:1.2rem;font-weight:700;color:#1a1a2e;margin-bottom:.75rem}
.value-card__desc{font-size:1.05rem;color:#555;line-height:1.75}

/* ===== CULTURE SECTION ===== */
.culture-perks{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin:2rem 0}
.culture-perk{display:flex;gap:1rem;align-items:flex-start;padding:1.5rem;background:#fff;border-radius:12px;border:1px solid #eee}
.culture-perk__icon{width:40px;height:40px;background:linear-gradient(135deg,#fff5eb,#ffecd2);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.culture-perk__text h4{font-size:1rem;font-weight:600;color:#1a1a2e;margin-bottom:.25rem}
.culture-perk__text p{font-size:1rem;color:#555;line-height:1.7}

/* ===== SECTION DIVIDER ===== */
.section--gradient{background:linear-gradient(135deg,#0d0d1a,#1a1a2e);color:#fff}
.section--gradient .section__title{color:#fff}
.section--gradient .content-block__text{color:rgba(255,255,255,.7)}

/* ===== ADDITIONAL RESPONSIVE FOR INNER PAGES ===== */
@media(max-width:1024px){
  .intro-split{grid-template-columns:1fr;gap:2rem}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:repeat(2,1fr)}
  .process-step::after{display:none}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .offices-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(3,1fr)}
  .testimonial-grid{grid-template-columns:1fr}
  .case-studies-grid{grid-template-columns:repeat(2,1fr)}
  .blog-listing-grid{grid-template-columns:repeat(2,1fr)}
  .value-grid{grid-template-columns:repeat(2,1fr)}
  .culture-perks{grid-template-columns:1fr}
}
@media(max-width:640px){
  .page-hero{padding:7rem 0 3rem}
  .features-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr}
  .offices-grid{grid-template-columns:1fr}
  .job-card{flex-direction:column;align-items:flex-start;text-align:left}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .case-studies-grid{grid-template-columns:1fr}
  .blog-listing-grid{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .cta-banner{padding:3rem 1.5rem}
}

/* ===== PERFORMANCE ===== */
/* GPU-accelerated animations */
.feature-card,.service-card,.blog-card,.case-card,.blog-listing-card,.value-card,.office-card,.job-card{will-change:transform;contain:layout style}
/* Reduce layout shifts with aspect ratios */
.blog-card__img,.case-card__img,.blog-listing-card__img{aspect-ratio:16/9}
.intro-split__img{aspect-ratio:4/3}
/* Content-visibility for off-screen sections (inner pages only) */
.page-content .section{content-visibility:auto;contain-intrinsic-size:auto 600px}
/* Reduce motion */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:0s!important;transition-duration:0s!important}
  html{scroll-behavior:auto}
}
