/* ============================================================
   Intercell Theme — Main Stylesheet (exact match to HTML design)
   ============================================================ */

/* ───── Self-hosted Inter Font ───── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ───── Reset & Tokens ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #087DB8;
  --dark: #1D1D1D;
  --gray-100: #F2F4F7;
  --gray-200: #EAECF0;
  --gray-300: #D0D5DD;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-900: #101828;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px 0 rgba(16,24,40,.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1440px;
  --px: 120px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}
body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ───── Layout helpers ───── */
.section { width: 100%; max-width: var(--max); margin: 0 auto; padding: 96px var(--px); }
.section--gray { background: var(--gray-100); }
.eyebrow { display: inline-flex; align-items: center; position: relative; }
.eyebrow__dot { position: absolute; left: -8px; top: -8px; width: 32px; height: 32px; pointer-events: none; z-index: 1; }
.eyebrow__pill { z-index: 2; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 400; line-height: 20px; padding: 4px 12px; border-radius: var(--radius-sm); letter-spacing: -.05px; white-space: nowrap; }
.eyebrow__pill--white { background: var(--white); color: var(--dark); }
.section-title { font-size: 48px; font-weight: 600; line-height: 1.25; letter-spacing: -1.44px; color: var(--dark); }
.section-title--center { text-align: center; }
.section-body { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--gray-600); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: var(--radius); font-size: 16px; font-weight: 500; line-height: 24px; cursor: pointer; transition: opacity .15s, transform .1s; box-shadow: var(--shadow-xs); border: 1px solid transparent; }
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--secondary { background: var(--white); color: var(--gray-700); border-color: var(--gray-200); }
.btn--icon { padding: 14px; }
.heading-stack { display: flex; flex-direction: column; gap: 12px; }

/* hamburger hidden on desktop */
.nav-hamburger { display: none; }

/* Global icon size lock */
.nav-phone img,
.drawer-phone img,
.about__check-item img,
.benefit-card__icon img,
.form-input img,
.form-phone__dd img,
.footer__contact-item img,
.btn img,
.blog-card__read img,
.testimonials__nav img,
.testimonials__nav button img {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  object-fit: contain;
}
.about__image .play,
.process__img .play { width: 56px !important; height: 56px !important; }

/* ───── NAV ───── */
nav { position: absolute; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--px); z-index: 100; background: rgba(29,29,29,.05); }
nav .logo { height: 32px; width: 180px; overflow: hidden; position: relative; flex-shrink: 0; }
nav .logo img { position: absolute; height: 175%; left: -147%; top: -35%; width: 247%; object-fit: contain; }
nav .nav-right { display: flex; align-items: center; }
nav .nav-links { display: flex; align-items: center; }
nav .nav-link { padding: 24px 16px; font-size: 16px; font-weight: 500; color: var(--white); line-height: 24px; white-space: nowrap; transition: opacity .15s; }
nav .nav-link:hover { opacity: .8; }
nav .nav-phone { display: flex; align-items: center; gap: 10px; padding: 24px 16px; font-size: 16px; font-weight: 500; color: var(--white); }
nav .nav-phone img { width: 24px; height: 24px; }
nav .nav-divider { width: 100%; height: 1px; background: var(--white); opacity: .1; position: absolute; bottom: 0; left: 0; }

/* ───── Hero ───── */
.hero-section { position: relative; width: 100%; height: 780px; display: flex; align-items: center; padding: 72px var(--px) 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 26%), linear-gradient(61.3deg,rgba(0,0,0,.5) 24%,rgba(0,0,0,0) 41%), linear-gradient(90deg,rgba(0,0,0,.5),rgba(0,0,0,.5)); }
.hero__content { position: relative; z-index: 2; max-width: 588px; display: flex; flex-direction: column; gap: 32px; }
.hero__meta { display: flex; flex-direction: column; gap: 16px; }
.hero__title { font-size: 72px; font-weight: 700; line-height: 88px; letter-spacing: -2.16px; color: var(--white); }
.hero__sub { font-size: 18px; font-weight: 400; line-height: 28px; color: #F2F4F7; }
.hero__actions { display: flex; gap: 16px; }
.hero__scroll { position: absolute; bottom: 33px; left: 50%; transform: translateX(-50%); width: 43px; height: 10px; z-index: 2; }
.hero__scroll img { width: 100%; height: 100%; }

/* ───── About ───── */
.about { display: flex; gap: 24px; align-items: flex-start; }
.about__text { flex: 1; display: flex; flex-direction: column; gap: 32px; padding-right: 24px; }
.about__text-inner { display: flex; flex-direction: column; gap: 16px; }
.about__heading { display: flex; flex-direction: column; gap: 12px; }
.about__checklist { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.about__check-item { display: flex; gap: 8px; align-items: center; font-size: 16px; color: var(--gray-600); }
.about__check-item img { width: 20px; height: 20px; flex-shrink: 0; }
.about__image { position: relative; width: 588px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; display: flex; align-items: flex-start; justify-content: flex-end; padding: 16px; min-height: 420px; }
.about__image img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.about__image .play { position: relative; z-index: 2; width: 56px; height: 56px; }
.about--image-left { flex-direction: row-reverse; }
.about--image-left .about__text { padding-right: 0; padding-left: 24px; }

/* ───── Products ───── */
.products { display: flex; flex-direction: column; gap: 48px; }
.products__grid { display: flex; gap: 24px; }
.products__col { display: flex; flex-direction: column; gap: 24px; flex: 1; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 24px; overflow: hidden; position: relative; }
.product-card__img { position: relative; flex: 1; min-height: 200px; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; }
.product-card__info { display: flex; flex-direction: column; gap: 16px; }
.product-card__title { font-size: 32px; font-weight: 475; line-height: 40px; letter-spacing: -.96px; color: var(--dark); }
.product-card__title--sm { font-size: 24px; line-height: 36px; letter-spacing: -.48px; }
.product-card__desc { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--gray-600); }
.product-card--horizontal { flex-direction: row; align-items: center; padding-left: 24px; padding-right: 0; }
.product-card--horizontal .product-card__info { flex: 1; padding: 64px 0; }
.product-card--horizontal .product-card__img { flex-shrink: 0; width: 351px; min-height: 280px; overflow: hidden; }
.product-card--horizontal .product-card__img img { height: 100%; object-fit: cover; }
.product-card--corner-img { padding-top: 160px; justify-content: flex-end; min-height: 338px; }
.product-card--corner-img .product-card__corner { position: absolute; top: -1px; right: -1px; width: 260px; height: 212px; overflow: hidden; }
.product-card--corner-img .product-card__corner img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 var(--radius-md) 0 0; }
.products__vector { position: absolute; right: 16px; top: 16px; width: 120px; height: 120px; pointer-events: none; }

/* ───── Process ───── */
.process { display: flex; flex-direction: column; gap: 48px; }
.process__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.process__body { display: flex; gap: 24px; align-items: stretch; }
.process__img { flex: 1; border-radius: var(--radius-md); overflow: hidden; min-height: 500px; position: relative; display: flex; align-items: flex-start; justify-content: flex-end; padding: 16px; }
.process__img img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.process__img .play { position: relative; z-index: 2; width: 56px; height: 56px; }
.process__steps { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.process__row { display: flex; gap: 24px; }
.step-card { flex: 1; background: var(--gray-100); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; gap: 24px; border: 1px solid var(--gray-200); }
.step-card--active { border-color: var(--blue); }
.step-card__num { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -1.08px; color: var(--dark); }
.step-card__body { display: flex; flex-direction: column; gap: 16px; line-height: 28px; }
.step-card__title { font-size: 20px; font-weight: 600; letter-spacing: -.4px; color: var(--dark); }
.step-card__desc { font-size: 18px; color: var(--gray-600); }

/* ───── Applications ───── */
.applications { display: flex; flex-direction: column; gap: 48px; }
.applications__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.app-grid { display: flex; flex-direction: column; gap: 24px; }
.app-row { display: flex; gap: 24px; }
.app-img { flex: 1; height: 420px; border-radius: var(--radius-lg); overflow: hidden; }
.app-img img { width: 100%; height: 100%; object-fit: cover; }
.app-img--fixed { flex: none; width: 384px; }

/* ───── Benefits ───── */
.benefits { display: flex; flex-direction: column; gap: 48px; }
.benefits__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.benefits__grid { display: flex; flex-direction: column; gap: 24px; }
.benefits__row { display: flex; gap: 24px; }
.benefit-card { flex: 1; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
.benefit-card__icon { background: var(--blue); border: 1px solid var(--blue); border-radius: var(--radius); padding: 14px; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; }
.benefit-card__icon img { width: 20px; height: 20px; }
.benefit-card__info { display: flex; flex-direction: column; gap: 12px; }
.benefit-card__title { font-size: 20px; font-weight: 600; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.benefit-card__desc { font-size: 16px; line-height: 24px; color: var(--gray-600); }

/* ───── Testimonials ───── */
.testimonials { display: flex; flex-direction: column; gap: 48px; }
.testimonials__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.testimonials__body { display: flex; gap: 24px; align-items: stretch; }
.testimonials__img { width: 411px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }
.testimonials__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.testimonials__img img.switching { opacity: 0; }
.testimonials__card { flex: 1; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; gap: 48px; }
.testimonials__quote { font-size: 32px; font-weight: 400; line-height: 40px; letter-spacing: -.96px; color: var(--dark); }
.testimonials__author { font-size: 16px; line-height: 24px; color: var(--gray-600); margin-top: 24px; }
.testimonials__controls { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.testimonials__avatars { display: flex; gap: 8px; align-items: center; }
.testimonials__avatar { width: 48px; height: 48px; border-radius: var(--radius); overflow: hidden; opacity: .5; cursor: pointer; transition: opacity .2s; }
.testimonials__avatar.active { opacity: 1; border: 1.2px solid var(--blue); }
.testimonials__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonials__nav { display: flex; gap: 8px; }

/* ───── FAQ ───── */
.faq { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.faq__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 792px; }
.faq__list { display: flex; flex-direction: column; gap: 16px; width: 792px; }
.faq-item { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue); }
.faq-item__header { display: flex; gap: 24px; justify-content: space-between; align-items: flex-start; }
.faq-item__q { font-size: 18px; font-weight: 475; line-height: 28px; color: var(--dark); flex: 1; }
.faq-item__icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--dark); border-radius: 2px; transition: transform .2s, opacity .2s; }
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; opacity: 1; }
.faq-item.open .faq-item__icon::after { opacity: 0; transform: rotate(90deg); }
.faq-item__answer { font-size: 16px; line-height: 24px; color: var(--gray-600); overflow: hidden; max-height: 0; transition: max-height .3s ease, margin-top .3s; }
.faq-item.open .faq-item__answer { max-height: 200px; margin-top: 12px; }

/* ───── Contact ───── */
.contact__inner { display: flex; gap: 24px; align-items: stretch; }
.contact__img { flex: 1; border-radius: var(--radius-lg); overflow: hidden; min-height: 500px; }
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__form-wrap { flex: 1; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
.contact__form-head { display: flex; flex-direction: column; gap: 24px; }
.contact__form-title-group { display: flex; flex-direction: column; gap: 12px; }
.contact__form-title-sub { display: flex; flex-direction: column; gap: 12px; }
.contact__form-title { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -1.08px; color: var(--dark); }
.contact__form-desc { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; line-height: 20px; color: var(--gray-700); }
.form-input { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px 14px; transition: border-color .15s; }
.form-input:focus-within { border-color: var(--blue); }
.form-input img { width: 20px; height: 20px; flex-shrink: 0; }
.form-input input, .form-input textarea { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 16px; line-height: 24px; color: var(--gray-500); background: transparent; }
.form-input textarea { resize: none; height: 80px; }
.form-phone { display: flex; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.form-phone__dd { display: flex; align-items: center; gap: 4px; padding: 10px 14px; border-right: 1px solid var(--gray-200); font-size: 16px; color: var(--gray-900); cursor: pointer; }
.form-phone input { flex: 1; border: none; outline: none; padding: 10px 14px; font-family: var(--font); font-size: 16px; color: var(--gray-500); }

/* ───── Blogs ───── */
.blogs { display: flex; flex-direction: column; gap: 48px; }
.blogs__header { display: flex; align-items: flex-end; gap: 24px; }
.blogs__header-text { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-cards { display: flex; gap: 24px; }
.blog-card { flex: 1; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 16px; display: flex; flex-direction: column; gap: 24px; }
.blog-card__img { height: 220px; border-radius: var(--radius-md); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__content { display: flex; flex-direction: column; gap: 24px; }
.blog-card__meta { display: flex; flex-direction: column; gap: 8px; }
.blog-card__date { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.blog-card__title { font-size: 20px; font-weight: 475; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.blog-card__read { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; color: var(--blue); cursor: pointer; }
.blog-card__read img { width: 20px; }

/* ───── CTA Video ───── */
.cta { position: relative; width: 100%; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); }
.cta__blur { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 794px; height: 212px; filter: blur(80px); background: rgba(8,125,184,.35); border-radius: 50%; }
.cta__inner { position: relative; z-index: 2; padding: 96px var(--px); display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta__text { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; color: var(--white); }
.cta__title { font-size: 48px; font-weight: 600; line-height: 60px; letter-spacing: -1.44px; max-width: 794px; }
.cta__sub { font-size: 24px; font-weight: 400; line-height: 36px; letter-spacing: -.48px; max-width: 720px; }

/* ───── Footer ───── */
footer { background: var(--gray-100); padding: 48px var(--px) 24px; }
.footer__top { display: flex; gap: 24px; padding-bottom: 32px; }
.footer__brand { width: 384px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; padding-right: 48px; }
.footer__logo { height: 32px; width: 180px; overflow: hidden; position: relative; }
.footer__logo img { position: absolute; height: 175%; left: -147%; top: -35%; width: 247%; object-fit: contain; }
.footer__tagline { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.footer__cols { flex: 1; display: flex; gap: 24px; }
.footer__col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.footer__col-title { font-size: 20px; font-weight: 475; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li { font-size: 16px; line-height: 24px; color: var(--gray-600); cursor: pointer; transition: color .15s; }
.footer__col ul li:hover { color: var(--blue); }
.footer__col ul li a { color: inherit; text-decoration: none; }
.footer__contact-item { display: flex; gap: 8px; align-items: flex-start; }
.footer__contact-item img { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.footer__contact-text { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.footer__divider { height: 1px; background: var(--gray-300); opacity: .5; margin-bottom: 24px; }
.footer__copy { font-size: 14px; font-family: sans-serif; color: var(--gray-600); text-align: center; line-height: 20px; }

/* ───── Scroll animations ───── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible, .fade-in.is-visible { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1440px) {
  :root { --px: clamp(24px, 8vw, 120px); }
}

/* TABLET 768–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --px: 40px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  nav { padding: 0 40px !important; }
  nav .nav-link { padding: 20px 10px; font-size: 14px; }
  nav .nav-phone span { display: none; }
  nav .nav-phone { padding: 20px 10px; }
  .hero-section { height: 680px !important; padding: 80px 40px 0 !important; }
  .hero__title { font-size: 52px !important; line-height: 64px !important; }
  .hero__content { max-width: 520px !important; }
  .about { flex-direction: column; gap: 40px; }
  .about__text { padding-right: 0; }
  .about__image { width: 100%; min-height: 360px; }
  .section-title { font-size: 36px; letter-spacing: -1px; }
  .products__grid { flex-direction: column; }
  .product-card--horizontal { flex-direction: column; padding: 24px; }
  .product-card--horizontal .product-card__img { width: 100% !important; height: 240px !important; }
  .products__col > div[style*="height:700px"] { height: auto !important; flex-direction: row !important; }
  .process__body { flex-direction: column; }
  .process__img { min-height: 300px; }
  .process__row { gap: 16px; }
  .app-row { flex-wrap: wrap; }
  .app-img { min-width: calc(50% - 12px); height: 260px; }
  .app-img--fixed { width: calc(50% - 12px) !important; }
  .benefits__row { flex-wrap: wrap; }
  .benefit-card { min-width: calc(50% - 12px); }
  .testimonials__body { flex-direction: column; }
  .testimonials__img { width: 100%; height: 300px; }
  .testimonials__quote { font-size: 22px; line-height: 32px; }
  .faq__list { width: 100%; }
  .faq__heading { max-width: 100%; }
  .contact__inner { flex-direction: column; }
  .contact__img { min-height: 300px; }
  .blog-cards { flex-wrap: wrap; }
  .blog-card { min-width: calc(50% - 12px); }
  .cta__title { font-size: 36px; line-height: 48px; }
  .cta__inner { padding: 72px 40px; }
  footer { padding: 48px 40px 24px; }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__brand { width: 100%; padding-right: 0; }
  .footer__cols { flex-wrap: wrap; }
  .footer__col { min-width: calc(50% - 12px); }
}

/* MOBILE ≤ 767px */
@media (max-width: 767px) {
  :root { --px: 20px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  nav { padding: 0 20px !important; }
  nav .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; padding: 4px; flex-shrink: 0; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-drawer { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,.97); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .nav-drawer.open { display: flex; }
  .nav-drawer a { font-size: 24px; font-weight: 600; color: var(--white); padding: 12px 20px; letter-spacing: -0.5px; }
  .nav-drawer a:hover { color: var(--blue); }
  .nav-drawer .drawer-phone { font-size: 16px; color: var(--gray-300); margin-top: 24px; display: flex; align-items: center; gap: 8px; }
  .nav-drawer .drawer-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .nav-drawer .drawer-close::before, .nav-drawer .drawer-close::after { content: ''; position: absolute; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
  .nav-drawer .drawer-close::before { transform: rotate(45deg); }
  .nav-drawer .drawer-close::after { transform: rotate(-45deg); }
  .hero-section { height: auto !important; min-height: 600px !important; padding: 80px 20px 48px !important; flex-direction: column !important; justify-content: flex-end !important; }
  .hero__content { width: 100% !important; max-width: 100% !important; }
  .hero__title { font-size: 36px !important; line-height: 44px !important; letter-spacing: -0.5px !important; }
  .hero__sub { font-size: 15px !important; line-height: 24px !important; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .section-title { font-size: 28px; letter-spacing: -0.5px; line-height: 1.2; }
  .about { flex-direction: column; gap: 32px; }
  .about__text { padding-right: 0; }
  .about__image { width: 100%; min-height: 280px; }
  .products__grid { flex-direction: column; }
  .product-card--horizontal { flex-direction: column; padding: 24px; }
  .product-card--horizontal .product-card__img { width: 100% !important; height: 200px !important; }
  .products__col > div[style*="height:700px"] { height: auto !important; flex-direction: column !important; }
  .product-card--corner-img { padding-top: 130px; }
  .products__vector { display: none; }
  .process__body { flex-direction: column; }
  .process__row { flex-direction: column; gap: 16px; }
  .app-row { flex-direction: column; }
  .app-img { height: 220px; width: 100% !important; flex: none; }
  .benefits__row { flex-direction: column; }
  .testimonials__body { flex-direction: column; }
  .testimonials__img { display: none; }
  .testimonials__card { padding: 20px; }
  .testimonials__quote { font-size: 18px; line-height: 28px; }
  .testimonials__controls { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faq__list { width: 100%; }
  .faq__heading { max-width: 100%; }
  .contact__inner { flex-direction: column; }
  .contact__img { display: none; }
  .contact__form-title { font-size: 28px; line-height: 36px; }
  .form-row { flex-direction: column; }
  .contact__form-wrap { padding: 20px; }
  .blogs__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-cards { flex-direction: column; }
  .cta__title { font-size: 28px; line-height: 38px; }
  .cta__inner { padding: 64px 20px; }
  footer { padding: 40px 20px 20px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__brand { width: 100%; padding-right: 0; }
  .footer__cols { flex-direction: column; gap: 28px; }
}
