/* ============================================================
   EWT THEME — STYLE.CSS
   Navy Corporate Precision (Native CSS Nesting)
   ============================================================ */

:root {
  /* Brand Colors */
  --ewt-black: #0B1426;
  --ewt-surface: #F0EFED;
  --ewt-card: #FFFFFF;
  --ewt-card-hover: #F8F8F6;
  --ewt-border: #E4E3E0;
  --ewt-border-strong: #D0CFCC;
  --ewt-accent: #0049CA;
  --ewt-accent-hover: #003DAB;
  --ewt-text-primary: #191B24;
  --ewt-text-body: #3D3D3A;
  --ewt-text-muted: #7A7A76;
  --ewt-text-faint: #B0B0AA;
  --ewt-success: #16A34A;
  --ewt-warning: #F59C00;
  --ewt-danger: #EF4444;
  --ewt-white: #FFFFFF;

  /* Accent alphas */
  --ewt-accent-glow: rgba(0, 73, 202, 0.2);
  --ewt-accent-subtle: rgba(0, 73, 202, 0.08);

  /* Fonts */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Layout / Styling */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 4px 14px rgba(0, 73, 202, 0.25);
  
  --duration-fast: 0.15s;
  --duration-base: 0.25s;
  --duration-slow: 0.4s;
  --duration-reveal: 0.8s;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 0. SECTION DEPTH SYSTEM */

/* Dot-grid texture on cream sections */
.ewt-section--surface {
  background-color: var(--ewt-surface);
  background-image: radial-gradient(rgba(0,73,202,0.07) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Glowing accent separator at the top of every padded section */
.ewt-section-pad { position: relative; }
.ewt-section-pad::before {
  display: none;
}

/* Cards: shadow lifts them off light backgrounds */
.ewt-service-exp-card,
.ewt-team-card,
.ewt-blog-card,
.ewt-blog-featured,
.ewt-contact-card,
.ewt-roadmap__item {
  box-shadow: var(--shadow-card);
}

/* Stagger: grid children animate in sequence */
[data-stagger] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22,1,0.36,1),
    transform 0.6s cubic-bezier(0.22,1,0.36,1);
  transition-delay: calc(var(--si, 0) * 90ms);
}
[data-stagger].is-visible {
  opacity: 1;
  transform: none;
}

/* 1. RESET + BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-color: #ffffff;
  color: var(--ewt-text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* 2. BASE TYPOGRAPHY — matches Home.html Sora/Inter spec */
h1, h2, h3, h4 {
  font-family: var(--font-display);   /* Sora */
  color: var(--ewt-text-primary);     /* #191B24 on light, #EDF2FF on dark (via cascade) */
}

h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem); /* 40px → 72px */
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3rem); /* 30px → 48px */
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h3 {
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.5rem); /* 18px → 24px */
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h4 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
}

p {
  font-family: var(--font-body);  /* Inter */
  color: var(--ewt-text-body);    /* #3D3D3A on light, #C5D3E8 on dark */
  line-height: 1.75;
}

/* Italic accent words in headlines — "online and found." style */
em {
  font-style: italic;
  color: var(--ewt-accent);       /* #0049CA on light sections */
}
/* On dark sections override to light-blue so it's readable on navy */
.ewt-section--black em { color: #dbe1ff; }

/* Eyebrow label — "FOR US SMALL BUSINESSES" style */
.ewt-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;             /* 12px — matches label-caps */
  font-weight: 600;
  letter-spacing: 0.1em;          /* tracking-widest */
  text-transform: uppercase;
  color: var(--ewt-accent);       /* blue, not muted grey */
  display: block;
  margin-bottom: 0.875rem;
}
/* Eyebrow on dark sections uses lighter blue so it's visible */
.ewt-section--black .ewt-eyebrow { color: #93c5fd; }

/* 3. CONTAINER + GRID */
.ewt-container {
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: var(--gutter, clamp(1rem, 5vw, 2.5rem));
  width: 100%;
}
.ewt-container--sm  { max-width: var(--container-sm, 800px); }
.ewt-container--lg  { max-width: var(--container-lg, 1440px); }

.ewt-grid {
  display: grid;
  gap: 1.5rem;
}
.ewt-grid--2  { grid-template-columns: repeat(2, 1fr); }
.ewt-grid--3  { grid-template-columns: repeat(3, 1fr); }
.ewt-grid--4  { grid-template-columns: repeat(4, 1fr); }
.ewt-grid--5  { grid-template-columns: repeat(5, 1fr); }
.ewt-grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (max-width: 1024px) {
  .ewt-grid--4, .ewt-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ewt-grid--2, .ewt-grid--3, .ewt-grid--4, .ewt-grid--5 { grid-template-columns: 1fr; }
}

/* 4. BUTTONS */
.ewt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8125rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--duration-base) var(--ease-out),
    transform  var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out);
}
.ewt-btn--primary {
  background: var(--ewt-accent);
  color: var(--ewt-white);
}
.ewt-btn--primary:hover {
  background: var(--ewt-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}
.ewt-btn--primary:active { transform: translateY(0); box-shadow: none; }

.ewt-btn--ghost {
  background: transparent;
  color: var(--ewt-text-body);
  border: 1.5px solid var(--ewt-border-strong);
  padding: 0.75rem 1.875rem;
}
.ewt-btn--ghost:hover {
  border-color: var(--ewt-accent);
  color: var(--ewt-accent);
}
.ewt-btn--white {
  background: var(--ewt-white);
  color: var(--ewt-black);
  font-weight: 700;
}
.ewt-btn--white:hover {
  background: #EDF2FF;
  transform: translateY(-1px);
}
.ewt-btn--sm   { padding: 0.5625rem 1.25rem; font-size: 0.875rem; }
.ewt-btn--lg   { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.ewt-btn--xl   { padding: 1.1875rem 3rem; font-size: 1.125rem; }
.ewt-btn--full { width: 100%; justify-content: center; }

.ewt-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ewt-accent);
  cursor: pointer;
  text-decoration: none;
}
.ewt-text-link .ewt-arrow { transition: transform var(--duration-base) var(--ease-out); }
.ewt-text-link:hover .ewt-arrow { transform: translateX(4px); }

/* 5. HEADER */
.ewt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition:
    background var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-out),
    backdrop-filter var(--duration-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.ewt-header.is-scrolled {
  background: rgba(9, 21, 37, 0.95);
  backdrop-filter: blur(16px) saturate(1.2);
  border-color: var(--ewt-border);
}
.ewt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.ewt-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.ewt-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ewt-header__nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ewt-text-body);
  text-decoration: none;
  position: relative;
  transition: color var(--duration-fast);
}
.ewt-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--ewt-accent);
  transition: right var(--duration-base) var(--ease-out);
}
.ewt-header__nav a:hover { color: var(--ewt-text-primary); }
.ewt-header__nav a:hover::after { right: 0; }

/* 6. FOOTER */
.ewt-footer {
  background: #070F1C;
  border-top: 1px solid var(--ewt-border);
  padding: 4rem 0 2rem;
}
.ewt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ewt-border);
}
@media (max-width: 1024px) {
  .ewt-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ewt-footer__grid { grid-template-columns: 1fr; }
}
.ewt-footer__tagline {
  font-size: 0.875rem;
  color: var(--ewt-text-faint);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.ewt-footer__col-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ewt-text-primary);
  margin-bottom: 1.5rem;
}
.ewt-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.ewt-footer__links a,
.ewt-footer__links li {
  font-size: 0.875rem;
  color: var(--ewt-text-muted);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.ewt-footer__links a:hover { color: var(--ewt-text-primary); }
.ewt-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--ewt-text-faint);
}

/* 7. BLOCKS — SHARED */
.ewt-section {
  position: relative;
  &--black   { background: var(--ewt-black); }
  &--surface { background: var(--ewt-surface); }
  &--white   { background: #ffffff; }
  &--accent  { background: var(--ewt-accent); }
}

.ewt-section-pad {
  padding: clamp(4rem, 8vw, 6rem) 0;
  &--sm  { padding: clamp(2rem, 4vw, 3rem) 0; }
  &--lg  { padding: clamp(6rem, 10vw, 8rem) 0; }
}

.ewt-section-header {
  margin-bottom: 3.5rem;
  &--centered { text-align: center; }
  &--centered .ewt-section-header__body { margin-inline: auto; }

  &__body {
    font-size: 1.0625rem;
    color: var(--ewt-text-muted);
    max-width: 560px;
    margin-top: 1rem;
    line-height: 1.75;
  }
}

/* 8. ANIMATIONS & REVEALS */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-reveal) var(--ease-out),
              transform var(--duration-reveal) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* 9. LOGO MARK */
.ewt-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ewt-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--ewt-white);
  flex-shrink: 0;
  user-select: none;
}
.ewt-logo-mark--sm {
  width: 32px;
  height: 32px;
  font-size: 0.5625rem;
}

.ewt-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ewt-logo-wordmark__top {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ewt-text-primary);
}
.ewt-logo-wordmark__bottom {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ewt-text-muted);
  letter-spacing: 0.02em;
}

/* 10. HEADER ADDITIONS */
.ewt-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ewt-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--ewt-text-muted);
  border: 1px solid var(--ewt-border);
  text-decoration: none;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}
.ewt-header__phone:hover {
  color: var(--ewt-accent);
  border-color: var(--ewt-accent);
}
.ewt-header__phone .material-icons { font-size: 18px; }

.ewt-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--ewt-border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 9px;
  flex-shrink: 0;
}
.ewt-burger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ewt-text-body);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base);
}
.ewt-header__burger.is-open .ewt-burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ewt-header__burger.is-open .ewt-burger__line:nth-child(2) { opacity: 0; }
.ewt-header__burger.is-open .ewt-burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .ewt-header__burger { display: flex; }
  .ewt-header__phone  { display: none; }

  .ewt-header__nav-wrap {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--ewt-surface);
    border-top: 1px solid var(--ewt-border);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    overflow-y: auto;
    z-index: 99;
  }
  .ewt-header__nav-wrap.is-open { transform: translateX(0); }
  .ewt-header__nav {
    flex-direction: column;
    gap: 0;
  }
  .ewt-header__nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--ewt-border);
  }
}

/* 11. FOOTER ADDITIONS */
.ewt-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.ewt-footer__brand-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ewt-text-primary);
}

.ewt-footer__link-icon {
  color: var(--ewt-accent);
  font-size: 16px !important;
  flex-shrink: 0;
}

.ewt-footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ewt-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ewt-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ewt-text-muted);
  text-decoration: none;
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}
.ewt-footer__social-link:hover {
  border-color: var(--ewt-accent);
  color: var(--ewt-accent);
  background: var(--ewt-accent-subtle);
}

.ewt-footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.ewt-footer__legal a {
  font-size: 0.75rem;
  color: var(--ewt-text-faint);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.ewt-footer__legal a:hover { color: var(--ewt-text-muted); }

/* ============================================================
   EWT ADDITIONS & HELPER STYLES
   ============================================================ */

/* Cream section utility */
.ewt-section--cream {
  background-color: #F5F1EA !important;
}

/* Word Cycling Animation helpers */
#word-cycle {
  transition: opacity 0.4s ease;
  display: inline-block;
}

.text-primary-fixed {
  color: #dbe1ff !important;
}

/* ============================================================
   VOIP & DIGITAL SECTION
   ============================================================ */
.ewt-voip-digital {
  background-color: #f3f3ff !important;
}

.ewt-voip-digital__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .ewt-voip-digital__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ewt-voip-digital__card {
  background: #ffffff;
  border-radius: 1.5rem; /* rounded-2xl */
  padding: 2.5rem; /* p-10 */
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.05); /* shadow-sm */
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ewt-border);
}
.ewt-voip-digital__card--voip {
  border-color: var(--ewt-border);
}
.ewt-voip-digital__card--digital {
  border-color: rgba(232, 93, 74, 0.2); /* coral border tint */
}

.ewt-voip-digital__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ewt-voip-digital__icon-wrap {
  width: 3.5rem; /* w-14 */
  height: 3.5rem; /* h-14 */
  border-radius: 1rem; /* rounded-2xl */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ewt-voip-digital__card--voip .ewt-voip-digital__icon-wrap {
  background: rgba(124, 58, 237, 0.1); /* violet/10 */
  color: #7C3AED;
}
.ewt-voip-digital__card--digital .ewt-voip-digital__icon-wrap {
  background: rgba(232, 93, 74, 0.1); /* coral/10 */
  color: #E85D4A;
}
.ewt-voip-digital__icon-wrap span {
  font-size: 1.875rem !important; /* text-3xl */
}

.ewt-voip-digital__header-text h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ewt-text-primary);
  margin: 0 0 0.25rem 0;
}
.ewt-voip-digital__header-text p {
  font-size: 0.875rem;
  color: var(--ewt-text-muted);
  margin: 0;
}

/* VoIP Table Styling */
.ewt-voip-digital__table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  text-align: left;
}
.ewt-voip-digital__table th {
  padding: 0.75rem 0;
  font-size: 0.625rem; /* text-[10px] */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ewt-text-muted);
  border-bottom: 1px solid var(--ewt-border);
}
.ewt-voip-digital__table td {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--ewt-text-body);
  border-bottom: 1px solid var(--ewt-border);
}
.ewt-voip-digital__table tr:last-child td {
  border-bottom: none;
}
.ewt-voip-digital__table td span.material-symbols-outlined {
  color: var(--ewt-accent);
  font-size: 1rem !important;
}

/* Digital Grid Styling */
.ewt-voip-digital__features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ewt-voip-digital__feature-item {
  padding: 1rem;
  background: var(--ewt-surface);
  border-radius: 0.75rem; /* rounded-xl */
}
.ewt-voip-digital__feature-item h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ewt-text-primary);
  margin: 0 0 0.25rem 0;
}
.ewt-voip-digital__feature-item p {
  font-size: 0.75rem;
  color: var(--ewt-text-muted);
  margin: 0;
}

/* Footer strip */
.ewt-voip-digital__footer-strip {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--ewt-card-hover);
  border: 1px solid rgba(0, 73, 202, 0.08);
  border-radius: 0.75rem; /* rounded-xl */
}
.ewt-voip-digital__footer-strip span {
  color: var(--ewt-accent);
  font-size: 1rem !important;
}
.ewt-voip-digital__footer-strip p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--ewt-text-body);
}
.ewt-voip-digital__footer-strip a {
  color: var(--ewt-accent);
  font-weight: 700;
}
.ewt-voip-digital__footer-strip a:hover {
  text-decoration: underline;
}

/* ============================================================
   ABOUT US PAGE LAYOUT FIXES
   ============================================================ */

/* Quote Card Overlay circular double quotes icon */
.ewt-about-quote-card {
  position: relative !important;
  overflow: visible !important;
}
.ewt-about-quote-card::before {
  content: 'format_quote';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  top: -24px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--ewt-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 10;
}

/* Responsive Team Card sizing overrides */
.ewt-team-card__img-wrap {
  width: 10rem !important;
  height: 10rem !important;
}
@media (min-width: 768px) {
  .ewt-team-card__img-wrap {
    width: 14rem !important;
    height: 14rem !important;
  }
}

/* Responsive Team Grid Header Layout */
.ewt-team__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}
.ewt-team__sub {
  color: var(--ewt-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .ewt-team__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .ewt-team__sub {
    margin-top: 0;
    max-width: 24rem;
  }
}

/* Custom CTA Split Icon */
.ewt-cta-split__icon {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

/* Tailwind Custom Classes from HTML Mockups */
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.glass-header { backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.8); }
.card-shadow { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }
.card-hover:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); transform: translateY(-4px) scale(1.04); }
.btn-green-shadow:hover { box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3); }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.faq-accordion[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.3s ease; }
.glass-panel { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); }

.hover-lift { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); }
.discovery-grid-item:hover .reveal-text { opacity: 1; transform: translateY(0); }
.discovery-grid-item .reveal-text { opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.animate-marquee { display: inline-flex; animation: marquee 30s linear infinite; }
