/* Easytether — Modern Design System */
:root {
  --primary: #22a079;
  --primary-dark: #1a8a65;
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --bg: #f7f9fb;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --font: 'Inter', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  max-width: 1280px; margin: 0 auto;
}
.logo {
  color: var(--white); font-size: 1.35rem; font-weight: 800;
  text-decoration: none; display: flex; align-items: center; gap: 2px;
  letter-spacing: -0.5px;
}
.logo em { color: var(--primary); font-style: normal; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav > a, .nav-dropdown > a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.main-nav > a:hover, .nav-dropdown:hover > a { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65em; opacity: 0.7; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy-light); border-radius: var(--radius);
  min-width: 195px; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  padding: 8px 0; border: 1px solid rgba(255,255,255,0.06);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 18px;
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.dropdown-menu a:hover { color: var(--primary); background: rgba(255,255,255,0.05); }

/* Nav Buttons */
.nav-btns { display: flex; gap: 10px; margin-left: 1rem; }
.btn {
  display: inline-block; padding: 8px 20px; border-radius: 7px;
  text-decoration: none; font-weight: 600; font-size: 0.85rem;
  transition: all 0.2s; white-space: nowrap;
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.45); color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-primary { background: var(--primary); color: var(--white); border: 1.5px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: white;
  border-radius: 2px; transition: all 0.3s; display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy-light); overflow-y: auto; z-index: 999;
  flex-direction: column; padding: 1rem 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 13px 5%;
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .mobile-section { padding: 8px 5% 4px; color: rgba(255,255,255,0.3); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
.nav-mobile .mobile-btns { display: flex; gap: 12px; padding: 1.25rem 5%; }
.nav-mobile .mobile-btns .btn { flex: 1; text-align: center; font-size: 0.9rem; padding: 10px 16px; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2e3d 60%, #0f3443 100%);
  color: var(--white); padding: 160px 5% 110px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(ellipse at 60% 40%, rgba(34,160,121,0.13) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-content { position: relative; max-width: 820px; margin: 0 auto; }
.hero-tag {
  display: inline-block; background: rgba(34,160,121,0.2);
  color: var(--primary); border: 1px solid rgba(34,160,121,0.4);
  border-radius: 50px; padding: 5px 16px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.12; margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75); margin-bottom: 2.5rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-lg { padding: 14px 34px; font-size: 1rem; border-radius: 8px; font-weight: 700; }
.btn-lg.btn-primary { box-shadow: 0 6px 24px rgba(34,160,121,0.4); }

/* ─── NEWS BAR ─── */
.news-bar {
  background: var(--primary); color: var(--white);
  padding: 12px 5%; text-align: center; font-size: 0.875rem; font-weight: 500;
}
.news-bar strong { font-weight: 700; }
.news-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3443 100%);
  color: var(--white); padding: 130px 5% 70px; text-align: center;
}
.page-header h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; }
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; }

/* ─── SECTIONS ─── */
section { padding: 90px 5%; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-alt { background: var(--bg); }
.section-teal { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title p { color: rgba(255,255,255,0.7); }

/* ─── FEATURE CARDS ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem; border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(34,160,121,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem; color: var(--primary);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* ─── PRESS CARDS ─── */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.press-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.press-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.press-source {
  font-size: 0.7rem; font-weight: 800; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.4rem;
}
.press-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.85rem; }
.press-card h3 { font-size: 0.975rem; font-weight: 600; color: var(--navy); line-height: 1.45; }
.press-card h3 a { color: inherit; text-decoration: none; }
.press-card h3 a:hover { color: var(--primary); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center; padding: 90px 5%;
}
.cta-section h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; }
.cta-section p { color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--primary); border: 1.5px solid var(--white); font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--primary-dark); }

/* ─── VALUE PILLS ─── */
.stats-row { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.stat-pill { text-align: center; }
.stat-pill .number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-pill .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 64px 5% 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 1rem; font-size: 1.2rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 240px; }
.footer-col h4 {
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 0.875rem;
  margin-bottom: 0.55rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem; font-size: 0.8rem; text-align: center;
  color: rgba(255,255,255,0.35);
}

/* ─── CONTENT PAGES ─── */
.content-wrap { max-width: 820px; margin: 0 auto; padding: 80px 5%; }
.content-wrap h2 {
  font-size: 1.55rem; font-weight: 700; color: var(--navy);
  margin: 2.25rem 0 0.85rem; letter-spacing: -0.3px;
}
.content-wrap h3, .content-wrap h4, .content-wrap h5 {
  font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.65rem;
}
.content-wrap h3 { font-size: 1.25rem; }
.content-wrap h4 { font-size: 1.1rem; }
.content-wrap h5 { font-size: 1rem; }
.content-wrap p { color: var(--text); margin-bottom: 1.1rem; line-height: 1.8; }
.content-wrap ul, .content-wrap ol { padding-left: 1.6rem; margin-bottom: 1.1rem; }
.content-wrap li { margin-bottom: 0.55rem; line-height: 1.75; color: var(--text); }
.content-wrap a { color: var(--primary); }
.content-wrap strong { color: var(--navy); }
.content-last-updated {
  font-size: 0.82rem; color: var(--text-light);
  background: var(--bg); border-radius: 6px; padding: 10px 14px;
  display: inline-block; margin-bottom: 2rem;
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: background 0.2s;
  font-size: 0.975rem; gap: 1rem;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,160,121,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  display: none; padding: 0 1.5rem 1.3rem;
  color: var(--text-light); line-height: 1.75; font-size: 0.95rem;
}
.faq-answer a { color: var(--primary); }
.faq-item.open .faq-answer { display: block; }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2.2rem; color: var(--white); font-weight: 700;
  box-shadow: 0 8px 24px rgba(34,160,121,0.25);
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.team-card .role { color: var(--primary); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.85rem; }
.team-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ─── FEE TABLE ─── */
.fee-section { margin-bottom: 2.5rem; }
.fee-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.fee-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.fee-table thead { background: var(--navy); color: var(--white); }
.fee-table th, .fee-table td { padding: 1rem 1.25rem; text-align: left; font-size: 0.9rem; }
.fee-table th { font-weight: 600; font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; }
.fee-table tbody tr { border-bottom: 1px solid var(--border); }
.fee-table tbody tr:last-child { border-bottom: none; }
.fee-table tbody tr:nth-child(even) { background: var(--bg); }
.fee-highlight { font-weight: 600; color: var(--primary); }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; max-width: 900px; margin: 0 auto; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 7px; font-family: var(--font); font-size: 0.94rem;
  color: var(--text); background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { height: 145px; resize: vertical; }
.btn-submit {
  background: var(--primary); color: var(--white); border: none;
  padding: 12px 32px; border-radius: 7px; font-size: 0.95rem;
  font-weight: 700; cursor: pointer; font-family: var(--font);
  transition: background 0.2s; width: 100%;
}
.btn-submit:hover { background: var(--primary-dark); }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
}
.contact-info-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.875rem; color: var(--text-light); text-decoration: none; display: block; margin-bottom: 0.3rem; }
.contact-info-card a:hover { color: var(--primary); }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 7px;
  text-decoration: none; color: var(--navy); font-size: 0.875rem;
  font-weight: 500; background: var(--white); border: 1px solid var(--border);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--primary); color: var(--primary); }

/* ─── BRANDING ─── */
.color-swatches { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.swatch { border-radius: 10px; overflow: hidden; min-width: 160px; box-shadow: var(--shadow); }
.swatch-color { height: 90px; }
.swatch-info { padding: 12px 14px; background: var(--white); border: 1px solid var(--border); border-top: none; }
.swatch-info strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 700; }
.swatch-info code { font-size: 0.78rem; color: var(--text-light); }

/* ─── INFO BOXES ─── */
.info-box {
  background: rgba(34,160,121,0.07); border: 1px solid rgba(34,160,121,0.2);
  border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box p { color: var(--text); margin: 0; font-size: 0.95rem; }
.warning-box {
  background: rgba(255,200,0,0.08); border: 1px solid rgba(255,200,0,0.3);
  border-left: 4px solid #f5c518; border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.warning-box p { margin: 0; font-size: 0.95rem; }

/* ─── ADVANTAGES ─── */
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.advantage-card {
  padding: 2rem 1.75rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border); position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.advantage-card .num {
  position: absolute; top: -14px; left: 1.75rem;
  background: var(--primary); color: white;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.advantage-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.advantage-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ─── TWO-COL SPLIT ─── */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.split-content p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.split-content .btn { margin-top: 0.5rem; }
.split-visual {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #0f3443);
  padding: 3rem 2rem; text-align: center; color: white;
  min-height: 280px; display: flex; align-items: center; justify-content: center;
}
.split-visual .big-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
.split-visual p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ─── ICON LIST ─── */
.icon-list { list-style: none; padding: 0; }
.icon-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-light); line-height: 1.6;
}
.icon-list li::before {
  content: '✓'; color: var(--primary); font-weight: 700;
  font-size: 1rem; flex-shrink: 0; margin-top: 1px;
  width: 22px; height: 22px; background: rgba(34,160,121,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

/* ─── BLOCKCHAIN TICKER PILLS ─── */
.currency-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.currency-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 8px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
}
.currency-pill.active { background: var(--primary); border-color: var(--primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-btns { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .hero { padding: 110px 5% 80px; }
  .page-header { padding: 110px 5% 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
}
