/*
Theme Name:  PWS Custom
Theme URI:   https://phuketwatersolutions.com
Description: Custom redesign theme for Phuket Water Solutions
Author:      New Media Designs
Version:     2.0
Template:    wellspring
*/

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:      #0A2540;
  --navy-mid:  #0D3460;
  --blue:      #0066CC;
  --teal:      #00A8CC;
  --teal-lt:   #ADE8F4;
  --sky:       #F0F9FF;
  --white:     #FFFFFF;
  --ink:       #0F172A;
  --slate:     #475569;
  --border:    #E2ECF5;
  --success:   #059669;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10,37,64,.08);
  --shadow-md: 0 8px 32px rgba(10,37,64,.12);
  --shadow-lg: 0 24px 64px rgba(10,37,64,.16);

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sky { background: var(--sky); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: rgba(0,168,204,.1); border: 1px solid rgba(0,168,204,.25); border-radius: 999px; padding: 5px 14px; margin-bottom: 20px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.section-head p { font-size: 18px; line-height: 1.7; color: var(--slate); }
.section--navy .section-head h2,
.section--navy-mid .section-head h2 { color: var(--white); }
.section--navy .section-head p,
.section--navy-mid .section-head p { color: rgba(255,255,255,.72); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 15px; font-weight: 700; border-radius: var(--r-sm); padding: 14px 28px; transition: all .2s ease; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #008fad; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,168,204,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #051828; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,37,64,.35); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all .3s ease; }
.nav--scrolled { background: rgba(10,37,64,.97); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(0,0,0,.2); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-icon { width: 38px; height: 38px; }
.nav__logo-text { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.2; }
.nav__logo-text span { color: var(--teal); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); transition: color .2s; }
.nav__links a:hover { color: var(--teal); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--teal); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav__mobile { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--white); }
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile-close { position: absolute; top: 20px; right: 24px; background: none; font-size: 32px; color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #051828 0%, #0A2540 40%, #0D3460 70%, #0A3A5C 100%); }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; }
.hero__blob--1 { width: 600px; height: 600px; background: var(--teal); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.hero__blob--2 { width: 400px; height: 400px; background: var(--blue); bottom: -50px; left: 10%; animation: float 10s ease-in-out infinite reverse; }
.hero__blob--3 { width: 300px; height: 300px; background: var(--teal-lt); top: 50%; left: 50%; animation: float 12s ease-in-out infinite; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,168,204,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,168,204,.06) 1px, transparent 1px); background-size: 60px 60px; }
.hero__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 120px 0 80px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,168,204,.15); border: 1px solid rgba(0,168,204,.3); border-radius: 999px; padding: 6px 16px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-lt); margin-bottom: 24px; }
.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero__h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero__h1 em { font-style: normal; color: var(--teal); }
.hero__sub { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.72); margin-bottom: 40px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.hero__stat-num span { color: var(--teal); }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
.hero__visual { position: relative; }
.hero__card-stack { position: relative; height: 480px; }
.hero__main-card { position: absolute; inset: 0; background: rgba(255,255,255,.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; }
.hero__water-visual { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,102,204,.3) 0%, rgba(0,168,204,.5) 50%, rgba(173,232,244,.4) 100%); }
.hero__water-svg { position: absolute; bottom: 0; left: 0; right: 0; }
.hero__card-info { position: relative; z-index: 1; }
.hero__card-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.hero__card-sub { font-size: 14px; color: rgba(255,255,255,.65); }
.hero__chip { position: absolute; background: var(--white); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-lg); }
.hero__chip--quality { top: 40px; right: -20px; display: flex; align-items: center; gap: 10px; }
.hero__chip--alert { bottom: 100px; left: -20px; display: flex; align-items: center; gap: 10px; }
.hero__chip-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__chip-icon--green { background: #D1FAE5; }
.hero__chip-icon--red { background: #FEE2E2; }
.hero__chip-text { font-family: var(--font-head); }
.hero__chip-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.hero__chip-sub { font-size: 11px; color: var(--slate); margin-top: 1px; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trustbar { background: var(--navy); padding: 0; border-top: 1px solid rgba(255,255,255,.08); }
.trustbar__inner { display: flex; align-items: stretch; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.trustbar__item { flex: 1 0 200px; display: flex; align-items: center; gap: 14px; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,.08); }
.trustbar__item:last-child { border-right: none; }
.trustbar__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,168,204,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trustbar__num { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.trustbar__label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── ALERT BANNER ────────────────────────────────────────── */
.alert-section { background: linear-gradient(135deg, #FEF2F2, #FFF5F5); border-top: 3px solid #EF4444; border-bottom: 3px solid #EF4444; padding: 48px 0; }
.alert-section__inner { display: flex; align-items: center; gap: 40px; }
.alert-icon { width: 72px; height: 72px; background: #FEE2E2; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alert-section h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #991B1B; margin-bottom: 8px; }
.alert-section p { color: #7F1D1D; font-size: 16px; line-height: 1.6; }

/* ── TECHNOLOGIES ─────────────────────────────────────────── */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tech-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px 32px; transition: all .25s ease; position: relative; overflow: hidden; }
.tech-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.tech-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.tech-card:hover::before { transform: scaleX(1); }
.tech-card__icon { width: 64px; height: 64px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.tech-card__icon--sed { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.tech-card__icon--uv { background: linear-gradient(135deg, #EDE9FE, #C4B5FD); }
.tech-card__icon--carbon { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.tech-card__num { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.tech-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.tech-card p { font-size: 15px; line-height: 1.7; color: var(--slate); margin-bottom: 20px; }
.tech-card__removes { display: flex; flex-direction: column; gap: 8px; }
.tech-card__removes-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 4px; }
.tech-card__remove-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); }
.tech-card__remove-item svg { color: var(--success); flex-shrink: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 40px; left: calc(16.666% + 20px); right: calc(16.666% + 20px); height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue)); z-index: 0; }
.step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step__num { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); color: var(--white); font-family: var(--font-head); font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; box-shadow: 0 8px 32px rgba(0,168,204,.35); }
.step h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step p { font-size: 15px; line-height: 1.7; color: var(--slate); }

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--border); transition: all .25s ease; display: flex; flex-direction: column; }
.product-card--featured { border-color: var(--teal); box-shadow: var(--shadow-md); transform: scale(1.03); }
.product-card:hover:not(.product-card--featured) { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.product-card__header { padding: 32px; background: var(--sky); position: relative; }
.product-card--featured .product-card__header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.product-badge { position: absolute; top: 16px; right: 16px; background: var(--teal); color: var(--white); font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.product-card__icon { width: 56px; height: 56px; border-radius: var(--r-md); background: rgba(0,168,204,.1); border: 1px solid rgba(0,168,204,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.product-card--featured .product-card__icon { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.product-card__tier { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.product-card--featured .product-card__tier { color: var(--teal-lt); }
.product-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.product-card--featured h3 { color: var(--white); }
.product-card__sub { font-size: 14px; color: var(--slate); }
.product-card--featured .product-card__sub { color: rgba(255,255,255,.6); }
.product-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-card__features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink); line-height: 1.5; }
.product-card__feature svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-item { display: flex; align-items: flex-start; gap: 20px; padding: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); transition: background .2s; }
.why-item:hover { background: rgba(255,255,255,.1); }
.why-item__icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: rgba(0,168,204,.2); border: 1px solid rgba(0,168,204,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { color: #F59E0B; }
.testi-card blockquote { font-size: 15px; line-height: 1.75; color: var(--slate); font-style: italic; flex: 1; }
.testi-card blockquote::before { content: '\201C'; font-size: 48px; line-height: .8; color: var(--teal); font-family: Georgia, serif; display: block; margin-bottom: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--slate); }

/* ── TEAM ─────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--white); }
.team-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 14px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; line-height: 1.7; color: var(--slate); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; background: var(--white); font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy); transition: background .2s; user-select: none; width: 100%; text-align: left; }
.faq-question:hover { background: var(--sky); }
.faq-question svg { flex-shrink: 0; color: var(--teal); transition: transform .3s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; line-height: 1.75; color: var(--slate); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h2 { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.contact-info p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.65); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(0,168,204,.2); border: 1px solid rgba(0,168,204,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-item p { font-size: 15px; color: var(--white); font-weight: 500; }
.contact-form { background: var(--white); border-radius: var(--r-xl); padding: 48px; box-shadow: var(--shadow-lg); }
.contact-form h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form .subtitle { font-size: 14px; color: var(--slate); margin-bottom: 32px; }

/* ── CONTACT FORM 7 STYLES ───────────────────────────────── */
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wpcf7-form p { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.wpcf7-form label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--navy); }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea { font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--sky); border: 2px solid var(--border); border-radius: var(--r-sm); padding: 12px 16px; transition: border-color .2s; outline: none; width: 100%; }
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--teal); background: var(--white); }
.wpcf7-form textarea { resize: vertical; min-height: 100px; }
.wpcf7-form input[type="submit"],
.wpcf7-submit { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--teal), var(--blue)); color: var(--white); font-family: var(--font-head); font-size: 16px; font-weight: 700; border-radius: var(--r-sm); border: none; cursor: pointer; transition: all .25s; }
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,168,204,.4); }
.wpcf7-not-valid-tip { color: #DC2626; font-size: 12px; margin-top: 4px; }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; }
.wpcf7-mail-sent-ok { background: #D1FAE5; border: 1px solid #059669; color: #065F46; }
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng { background: #FEE2E2; border: 1px solid #DC2626; color: #991B1B; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 50%, var(--navy) 100%); padding: 80px 0; text-align: center; }
.cta-strip h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.cta-strip__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #030F1C; color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer__brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer__col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer__col ul li a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: 13px; }
.footer__social { display: flex; gap: 12px; }
.footer__social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer__social-btn:hover { background: var(--teal); }
.footer__social-btn svg { color: rgba(255,255,255,.7); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.05); }
}
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hero__content { padding-top: 140px; }
  .tech-grid { grid-template-columns: 1fr; gap: 20px; }
  .tech-card { display: grid; grid-template-columns: 64px 1fr; gap: 24px; }
  .tech-card__icon { margin-bottom: 0; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card--featured { transform: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .trustbar__inner { flex-direction: column; }
  .trustbar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trustbar__item:last-child { border-bottom: none; }
  .alert-section__inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .wpcf7-form .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .tech-card { display: flex; flex-direction: column; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 28px 20px; }
  .cta-strip__actions { flex-direction: column; }
  .cta-strip__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}
