/* AI Easy Way - Coinbase Design System (Exact Specs) */

/* === Color Palette === */
.ai-easy-way-page {
  --cb-blue: #0052ff;
  --cb-green: #05b169;
  --cb-dark: #0a0b0d;
  --cb-white: #ffffff;
  --cb-gray: #5b616e;
  --cb-light: #f7f7f7;
}

/* === Base Reset === */
.ai-easy-way-page {
  background: #f7f7f7;
  color: #0a0b0d;
  font-family: 'Clash Display', -apple-system, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* === Container Coinbase === */
.ai-easy-way-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 1024px) {
  .ai-easy-way-page .container {
    padding: 0 32px;
  }
}

@media (max-width: 640px) {
  .ai-easy-way-page .container {
    padding: 0 20px;
  }
}

/* === Navigation - 64px height, Coinbase layout === */
.ai-easy-way-page .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: #0052ff;
  border-bottom: none;
}

.ai-easy-way-page .nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-easy-way-page .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ai-easy-way-page .nav-logo .logo-icon {
  width: 32px;
  height: auto;
  object-fit: contain;
}

.ai-easy-way-page .nav-logo-adatech .logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #0a0b0d;
  letter-spacing: 1px;
}

.ai-easy-way-page .nav-logo-easyway {
  display: flex;
  align-items: center;
}

.ai-easy-way-page .logo-easyway {
  height: 28px;
  width: auto;
}

.ai-easy-way-page .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.ai-easy-way-page .nav-link {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
}

.ai-easy-way-page .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ai-easy-way-page .nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 32px;
}

.ai-easy-way-page .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ai-easy-way-page .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ai-easy-way-page .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ai-easy-way-page .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ai-easy-way-page .nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .ai-easy-way-page .nav-inner {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .ai-easy-way-page .nav-inner {
    padding: 0 16px;
    justify-content: space-between;
  }

  .ai-easy-way-page .nav-toggle {
    display: flex !important;
    order: -1;
  }

  .ai-easy-way-page .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0052ff;
    padding: 20px;
    gap: 0;
    z-index: 100;
  }

  .ai-easy-way-page .nav-links.open {
    display: flex;
  }

  .ai-easy-way-page .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    font-size: 16px;
    color: #ffffff;
  }

  .ai-easy-way-page .nav-link:last-of-type {
    border-bottom: none;
  }

  .ai-easy-way-page .nav-cta-mobile {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ai-easy-way-page .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .ai-easy-way-page .nav-cta-desktop {
    display: none !important;
  }

  .ai-easy-way-page .logo-easyway {
    height: 24px;
  }

  .ai-easy-way-page .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .ai-easy-way-page .logo-easyway {
    height: 22px;
  }
}

/* === Typography Coinbase === */
.ai-easy-way-page h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: #0a0b0d;
}

.ai-easy-way-page h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.3px;
  color: #0a0b0d;
}

.ai-easy-way-page h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.3px;
  color: #0a0b0d;
}

.ai-easy-way-page p {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #5b616e;
}

@media (max-width: 1024px) {
  .ai-easy-way-page h1 {
    font-size: 64px;
    letter-spacing: -0.3px;
  }
  .ai-easy-way-page h2 {
    font-size: 44px;
    letter-spacing: -0.2px;
  }
}

@media (max-width: 768px) {
  .ai-easy-way-page h1 {
    font-size: 44px;
    letter-spacing: 0;
  }
  .ai-easy-way-page h2 {
    font-size: 36px;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .ai-easy-way-page h1 {
    font-size: 36px;
    letter-spacing: 0;
  }
  .ai-easy-way-page h2 {
    font-size: 32px;
    letter-spacing: 0;
  }
}

/* === Buttons Coinbase - Pill 100px === */
.ai-easy-way-page .btn,
.ai-easy-way-page button,
.ai-easy-way-page input[type="submit"] {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  border-radius: 100px;
  padding: 12px 20px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ai-easy-way-page .btn-primary {
  background: #0052ff;
  color: #ffffff;
}

.ai-easy-way-page .btn-primary:hover {
  background: #003ecc;
}

/* Nav CTA button - white on blue header */
.ai-easy-way-page .nav-cta .btn-primary {
  background: #ffffff;
  color: #0052ff;
}

.ai-easy-way-page .nav-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.ai-easy-way-page .btn-secondary {
  background: #eef0f3;
  color: #0a0b0d;
  border: none;
}

.ai-easy-way-page .btn-secondary:hover {
  background: #dee1e6;
}

.ai-easy-way-page .btn-lg {
  padding: 16px 32px;
  height: 56px;
}

/* === Hero Section - Full viewport === */
.hero-cb {
  background: #f7f7f7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px; /* nav height */
}

.hero-cb > .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px;
}

.hero-cb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker-logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
}

.hero-cb-content h1 {
  margin-bottom: 24px;
}

.hero-cb-subtitle {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #5b616e;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cb-cta {
  display: flex;
  gap: 16px;
}

.badge-cb {
  display: inline-flex;
  padding: 4px 12px;
  background: #eef0f3;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .hero-cb {
    min-height: 100vh;
    padding-top: 64px;
  }
  .hero-cb > .container {
    padding: 64px 40px;
  }
  .hero-cb-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-cb-subtitle {
    margin-inline: auto;
  }
  .hero-kicker-logo {
    margin-inline: auto;
  }
  .hero-cb-cta {
    justify-content: center;
  }
  .hero-cb-visual {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-cb {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 64px;
  }
  .hero-cb > .container {
    padding: 48px 20px;
  }
  .hero-cb-grid {
    gap: 32px;
  }
  .hero-cb-subtitle {
    font-size: 18px;
  }
  .hero-kicker-logo {
    height: 36px;
  }
  .hero-cb-cta {
    flex-direction: column;
  }
  .hero-cb-cta .btn {
    width: 100%;
  }
}

/* Mockup card */
.mockup-cb {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #dee1e6;
}

.mockup-cb-screen {
  background: #f7f7f7;
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c828a;
  text-align: center;
}

.mockup-cb-screen svg {
  margin-bottom: 12px;
  opacity: 0.5;
}

.mockup-cb-screen span {
  display: block;
  font-size: 14px;
}

/* === Sections - 96px padding === */
.section-cb {
  padding: 96px 0;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .section-cb {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .section-cb {
    padding: 48px 0;
  }
}

.section-cb-soft {
  background: #f7f7f7;
}

#problema {
  padding-bottom: 140px;
}

#problema .grid-cb-3 {
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

#problema .card-cb,
#funzionalita .card-cb,
#per-chi .for-who-cb {
  background: #eef0f3;
  border: none;
}

.section-cb-dark {
  background: #0a0b0d;
}

.section-cb-blue {
  background: #0052ff;
}

.section-cb-dark h2 {
  color: #ffffff;
}

.section-cb-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-cb-dark .check-list-cb li {
  color: #ffffff;
}

.section-cb-dark .check-list-cb svg {
  color: #05b169;
}

.section-cb-dark .media-cb {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.section-cb-dark .stat-cb-number {
  color: #05b169;
}

.section-cb-dark .stat-cb-label {
  color: rgba(255, 255, 255, 0.85);
}

#prova .section-cb-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#prova .section-cb-header h2,
#prova .section-cb-header p {
  text-align: center;
}

/* Prova Concierge Layout */
.prova-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.prova-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prova-illustration svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.prova-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.prova-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

.prova-content .concierge-demo-wrapper {
  margin-top: 24px;
}

/* Prova Centered Layout */
.section-cb-blue {
  padding: 120px 0;
}

.prova-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.prova-centered h2 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.prova-centered p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.prova-cta {
  display: flex;
  justify-content: center;
}

/* White Button */
.btn-white {
  background: #ffffff;
  color: #0a0b0d;
  font-weight: 600;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .prova-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .prova-illustration {
    order: -1;
  }

  .prova-illustration svg {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .section-cb-blue {
    padding: 80px 0;
  }

  .prova-centered h2 {
    font-size: 36px;
  }

  .prova-layout {
    gap: 32px;
  }

  .prova-content > p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .prova-centered h2 {
    font-size: 28px;
  }

  .prova-centered p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .prova-illustration svg {
    max-width: 260px;
  }
}

.section-cb-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-cb-header h2 {
  margin-bottom: 16px;
}

.section-cb-header p {
  font-size: 18px;
  max-width: 600px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .section-cb-header {
    margin-bottom: 32px;
  }
}

/* === Cards Coinbase - 24px radius, 32px padding === */
.card-cb {
  background: #ffffff;
  border: 1px solid #dee1e6;
  border-radius: 24px;
  padding: 32px;
  transition: box-shadow 0.2s ease;
}

.card-cb:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.card-cb-icon {
  width: 32px;
  height: 32px;
  color: #0052ff;
  margin-bottom: 16px;
}

.card-cb-icon-illustrated {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.card-cb-icon-illustrated svg {
  width: 100%;
  height: 100%;
}

.card-cb h3 {
  margin-bottom: 8px;
}

.card-cb p {
  font-size: 16px;
}

/* Feature grid - 24px gap */
.grid-cb-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-cb-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-cb-3,
  .grid-cb-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-cb-3,
  .grid-cb-4 {
    grid-template-columns: 1fr;
  }
}

/* === Two Column Layout - 64px gap === */
.two-col-cb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-cb-content h2 {
  margin-bottom: 24px;
}

.two-col-cb-content > p {
  font-size: 18px;
  margin-bottom: 32px;
}

.check-list-cb {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list-cb li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #0a0b0d;
}

.check-list-cb svg {
  color: var(--cb-green, #05b169);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.two-col-cb.reverse .two-col-cb-visual {
  order: -1;
}

@media (max-width: 1024px) {
  .two-col-cb {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Media placeholder */
.media-cb {
  background: #f7f7f7;
  border-radius: 24px;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee1e6;
  color: #7c828a;
}

.media-cb svg {
  margin-bottom: 12px;
  opacity: 0.5;
}

.media-cb span {
  font-size: 14px;
}

/* Image containers */
.hero-cb-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-cb-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.media-cb-image {
  border-radius: 24px;
  overflow: hidden;
}

.media-cb-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.section-cb-dark .media-cb-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Stats Row === */
.stats-cb {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  margin-top: 32px;
}

.stat-cb {
  text-align: left;
}

.stat-cb-number {
  display: block;
  font-size: 48px;
  font-weight: 400;
  color: #0052ff;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-cb-label {
  display: block;
  font-size: 14px;
  color: #5b616e;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stats-cb {
    flex-wrap: wrap;
    gap: 32px;
  }
}

/* === Process Steps === */
.process-cb {
  max-width: 800px;
  margin-inline: auto;
}

.process-cb-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid #dee1e6;
}

.process-cb-step:last-child {
  border-bottom: none;
}

.process-cb-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f3;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 400;
  color: #0a0b0d;
}

.process-cb-icon-illustrated {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.process-cb-icon-illustrated svg {
  width: 100%;
  height: 100%;
}

.process-cb-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.process-cb-content p {
  font-size: 16px;
}

@media (max-width: 640px) {
  .process-cb-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .process-cb-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* === For Who Cards === */
.for-who-cb {
  background: #ffffff;
  border: 1px solid #dee1e6;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.for-who-cb:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.for-who-cb-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f3;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: #0052ff;
}

.for-who-cb-icon-illustrated {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.for-who-cb-icon-illustrated svg {
  width: 100%;
  height: 100%;
}

.for-who-cb h3 {
  margin-bottom: 8px;
}

.for-who-cb p {
  font-size: 14px;
}

/* === CTA Band === */
.cta-cb {
  background: #f7f7f7;
  padding: 96px 0;
}

.cta-cb-inner {
  text-align: center;
}

.cta-cb-inner h2 {
  margin-bottom: 16px;
}

.cta-cb-inner > p {
  font-size: 18px;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.form-cb {
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.form-cb-row {
  display: flex;
  gap: 12px;
}

.input-cb {
  flex: 1;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #dee1e6;
  border-radius: 12px;
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  color: #0a0b0d;
  height: 48px;
  transition: border-color 0.15s ease;
}

.input-cb::placeholder {
  color: #7c828a;
}

.input-cb:focus {
  outline: none;
  border-color: #0052ff;
  border-width: 2px;
  padding: 13px 15px;
}

.cta-cb-note {
  font-size: 13px;
  color: #7c828a;
  margin-top: 32px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .cta-cb {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .cta-cb {
    padding: 48px 0;
  }
  .form-cb-row {
    flex-direction: column;
  }
  .form-cb-row .btn {
    width: 100%;
  }
}

/* === Footer === */
.ai-easy-way-page .footer {
  background: #0a0b0d;
  border-top: none;
  padding: 64px 0 32px;
}

.ai-easy-way-page .footer > .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.ai-easy-way-page .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .ai-easy-way-page .footer > .container {
    padding: 0 40px;
  }
  .ai-easy-way-page .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .ai-easy-way-page .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .ai-easy-way-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ai-easy-way-page .footer > .container {
    padding: 0 20px;
  }
  .ai-easy-way-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.ai-easy-way-page .footer-logo-easyway {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.ai-easy-way-page .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.ai-easy-way-page .footer-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.ai-easy-way-page .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.ai-easy-way-page .footer-links a:hover {
  color: #ffffff;
}

.ai-easy-way-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  padding-top: 32px;
  margin-top: 48px;
}

.ai-easy-way-page .footer-social a {
  color: rgba(255, 255, 255, 0.5);
}

.ai-easy-way-page .footer-social a:hover {
  color: #ffffff;
}

/* === Legal Pages Easy Way === */
.legal-page-ew {
  padding: 140px 0 80px;
  background: #f7f7f7;
  min-height: 100vh;
}

.legal-header-ew {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #dee1e6;
}

.legal-header-ew h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 12px;
}

.legal-header-ew .legal-updated {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.875rem;
  color: #7c828a;
}

.legal-content-ew {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content-ew section {
  margin-bottom: 40px;
}

.legal-content-ew h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 16px;
}

.legal-content-ew h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0a0b0d;
  margin: 24px 0 12px;
}

.legal-content-ew p {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5b616e;
  margin-bottom: 16px;
}

.legal-content-ew ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content-ew li {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5b616e;
  margin-bottom: 8px;
}

.legal-content-ew li::marker {
  color: #0052ff;
}

.legal-content-ew strong {
  color: #0a0b0d;
  font-weight: 600;
}

.legal-content-ew a {
  color: #0052ff;
  text-decoration: underline;
}

.legal-content-ew a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .legal-page-ew {
    padding: 120px 0 60px;
  }

  .legal-header-ew {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .legal-header-ew h1 {
    font-size: 1.75rem;
  }

  .legal-content-ew {
    padding: 0 16px;
  }

  .legal-content-ew section {
    margin-bottom: 32px;
  }

  .legal-content-ew h2 {
    font-size: 1.25rem;
  }

  .legal-content-ew h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-page-ew {
    padding: 110px 0 50px;
  }

  .legal-header-ew h1 {
    font-size: 1.5rem;
  }

  .legal-content-ew p,
  .legal-content-ew li {
    font-size: 0.9375rem;
  }
}

/* === Blog Easy Way === */
.blog-header-ew {
  position: relative;
  background: #0052ff;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.blog-hero-image-ew {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.blog-hero-image-ew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay-ew {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 82, 255, 0.85), rgba(0, 82, 255, 0.75));
}

.blog-header-ew .container {
  position: relative;
  z-index: 1;
}

.blog-header-ew h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.blog-header-ew p {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.blog-featured-ew {
  padding: 80px 0;
  background: #f7f7f7;
}

.blog-card-featured-ew {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.blog-card-featured-ew .blog-card-image-ew {
  height: 100%;
}

.blog-card-featured-ew .blog-card-image-ew img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.blog-card-featured-ew .blog-card-content-ew {
  padding: 48px 48px 48px 0;
}

.blog-card-featured-ew h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-card-featured-ew h2 a {
  color: #0a0b0d;
  text-decoration: none;
}

.blog-card-featured-ew h2 a:hover {
  color: #0052ff;
}

.blog-card-featured-ew p {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.0625rem;
  color: #5b616e;
  margin-bottom: 24px;
  line-height: 1.6;
}

.blog-grid-section-ew {
  padding: 40px 0 80px;
  background: #f7f7f7;
}

.blog-grid-ew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card-ew {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card-ew:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card-image-ew {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card-image-ew img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-ew:hover .blog-card-image-ew img {
  transform: scale(1.05);
}

.blog-card-category-ew {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0052ff;
  color: #fff;
  font-family: 'Clash Display', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content-ew {
  padding: 24px;
}

.blog-card-date-ew {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.8125rem;
  color: #7c828a;
  display: block;
  margin-bottom: 8px;
}

.blog-card-ew h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-ew h3 a {
  color: #0a0b0d;
  text-decoration: none;
}

.blog-card-ew h3 a:hover {
  color: #0052ff;
}

.blog-card-ew p {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.9375rem;
  color: #5b616e;
  line-height: 1.6;
}

.blog-card-link-ew {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Clash Display', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0052ff;
  text-decoration: none;
  margin-top: 16px;
}

.blog-card-link-ew:hover {
  text-decoration: underline;
}

.blog-load-more-ew {
  text-align: center;
  margin-top: 48px;
}

.blog-newsletter-ew {
  padding: 80px 0;
  background: #0052ff;
}

.newsletter-card-ew {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-card-ew h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-card-ew p {
  font-family: 'Clash Display', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.newsletter-form-ew {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form-ew input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 100px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  outline: none;
}

.newsletter-form-ew input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-ew input:focus {
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-form-ew .btn {
  background: #ffffff;
  color: #0052ff;
}

.newsletter-form-ew .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-header-ew {
    padding: 140px 0 60px;
  }

  .blog-grid-ew {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-featured-ew {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .blog-card-featured-ew {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-card-featured-ew .blog-card-image-ew img {
    min-height: 250px;
  }

  .blog-card-featured-ew .blog-card-content-ew {
    padding: 32px;
  }

  .newsletter-form-ew {
    flex-direction: column;
  }

  .newsletter-form-ew .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-header-ew {
    padding: 120px 0 50px;
  }

  .blog-header-ew h1 {
    font-size: 2rem;
  }

  .blog-header-ew p {
    font-size: 1rem;
    padding: 0 16px;
  }

  .blog-grid-ew {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-featured-ew {
    padding: 40px 0;
  }

  .blog-grid-section-ew {
    padding: 20px 0 50px;
  }

  .blog-newsletter-ew {
    padding: 50px 0;
  }

  .newsletter-card-ew h2 {
    font-size: 1.5rem;
  }
}

/* === Article Page Styles === */
.article-header-ew {
  background: #0052ff;
  padding: 140px 0 60px;
  text-align: center;
}

.article-header-ew .container {
  max-width: 800px;
}

.article-meta-ew {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.article-category-ew {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
}

.article-date-ew {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-header-ew h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ai-easy-way-page .article-excerpt-ew {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  color: #ffffff !important;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.article-hero-ew {
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.article-hero-ew img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-content-ew {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Clash Display', sans-serif;
}

.article-content-ew p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.article-content-ew h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0a0b0d;
  margin: 48px 0 20px;
}

.article-content-ew ul {
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.article-content-ew li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.article-content-ew strong {
  font-weight: 600;
  color: #0a0b0d;
}

.article-content-ew blockquote {
  border-left: 4px solid #0052ff;
  padding: 20px 30px;
  margin: 40px 0;
  background: #f7f7f7;
  border-radius: 0 12px 12px 0;
}

.article-content-ew blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: #0a0b0d;
  margin: 0;
}

.article-footer-ew {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 40px;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}

.article-tags-ew {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag-ew {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0052ff;
  background: rgba(0, 82, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-tag-ew:hover {
  background: rgba(0, 82, 255, 0.2);
}

.article-back-ew {
  text-align: center;
  padding: 0 20px 80px;
}

.article-back-ew .btn {
  font-family: 'Clash Display', sans-serif;
}

/* Article page responsive */
@media (max-width: 768px) {
  .article-header-ew {
    padding: 120px 0 50px;
  }

  .article-header-ew h1 {
    font-size: 1.75rem;
  }

  .article-excerpt-ew {
    font-size: 1rem;
  }

  .article-hero-ew {
    margin-top: -30px;
  }

  .article-content-ew {
    padding: 40px 20px;
  }

  .article-content-ew p,
  .article-content-ew li {
    font-size: 1rem;
  }

  .article-content-ew h2 {
    font-size: 1.5rem;
    margin: 36px 0 16px;
  }

  .article-content-ew blockquote {
    padding: 16px 20px;
  }

  .article-content-ew blockquote p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .article-meta-ew {
    flex-direction: column;
    gap: 10px;
  }

  .article-header-ew {
    padding: 100px 0 40px;
  }

  .article-back-ew {
    padding-bottom: 60px;
  }
}

/* === Override AdaTech card styles === */
.ai-easy-way-page .card {
  background: #ffffff;
  border: 1px solid #dee1e6;
  border-radius: 24px;
  padding: 32px;
}

.ai-easy-way-page .card:hover {
  background: #ffffff;
  border-color: #dee1e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: none;
}

.ai-easy-way-page .card:hover h3 {
  color: #0a0b0d;
}

.ai-easy-way-page .card:hover p {
  color: #5b616e;
}

.ai-easy-way-page .card:hover .card-icon {
  color: #0052ff;
}

.ai-easy-way-page .card-icon {
  color: #0052ff;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  background: none;
}

.ai-easy-way-page .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 8px;
}

.ai-easy-way-page .card p {
  font-size: 16px;
  color: #5b616e;
}

/* === Override section styles === */
.ai-easy-way-page .section {
  padding: 96px 0;
}

@media (max-width: 1024px) {
  .ai-easy-way-page .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .ai-easy-way-page .section {
    padding: 48px 0;
  }
}

.ai-easy-way-page .section-header {
  margin-bottom: 64px;
}

@media (max-width: 640px) {
  .ai-easy-way-page .section-header {
    margin-bottom: 32px;
  }
}

.ai-easy-way-page .section-header h2 {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -1.3px;
}

@media (max-width: 1024px) {
  .ai-easy-way-page .section-header h2 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .ai-easy-way-page .section-header h2 {
    font-size: 32px;
  }
}

.ai-easy-way-page .grid {
  gap: 24px;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - Tablet & Mobile
   ============================================ */

/* === Tablet (768px - 1024px) === */
@media (max-width: 1024px) {
  /* Hero adjustments */
  .ai-easy-way-page .hero-cb {
    padding: 120px 0 60px;
  }

  .ai-easy-way-page .hero-cb-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ai-easy-way-page .hero-cb-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .ai-easy-way-page .hero-kicker-logo {
    margin: 0 auto 24px;
  }

  .ai-easy-way-page .hero-cb-cta {
    justify-content: center;
  }

  /* Features grid */
  .ai-easy-way-page .features-grid-ew {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog grid */
  .ai-easy-way-page .blog-grid-ew {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === CTA Desktop/Mobile visibility === */
.ai-easy-way-page .nav-cta-mobile {
  display: none;
}

.ai-easy-way-page .nav-cta-desktop {
  display: block;
}

/* === Mobile (max 768px) === */
@media (max-width: 768px) {
  /* Hero mobile */
  .ai-easy-way-page .hero-cb {
    padding: 100px 0 50px;
  }

  .ai-easy-way-page .hero-cb-title {
    font-size: 36px;
  }

  .ai-easy-way-page .hero-cb-subtitle {
    font-size: 16px;
  }

  .ai-easy-way-page .hero-cb-cta {
    flex-direction: column;
    gap: 12px;
  }

  .ai-easy-way-page .hero-cb-cta .btn {
    width: 100%;
  }

  /* Features single column */
  .ai-easy-way-page .features-grid-ew {
    grid-template-columns: 1fr;
  }

  /* Blog featured card */
  .ai-easy-way-page .blog-card-featured-ew {
    grid-template-columns: 1fr;
  }

  .ai-easy-way-page .blog-card-featured-ew .blog-card-image-ew {
    height: 220px;
  }

  /* Footer social icons */
  .ai-easy-way-page .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ai-easy-way-page .footer-social {
    justify-content: center;
  }
}

/* === Small Mobile (max 480px) === */
@media (max-width: 480px) {
  /* Container padding */
  .ai-easy-way-page .container {
    padding: 0 16px;
  }

  /* Hero adjustments */
  .ai-easy-way-page .hero-cb {
    padding: 90px 0 40px;
  }

  .ai-easy-way-page .hero-kicker-logo {
    height: 36px;
  }

  .ai-easy-way-page .hero-cb-title {
    font-size: 28px;
  }

  /* Buttons full width */
  .ai-easy-way-page .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .ai-easy-way-page .btn-lg {
    padding: 14px 24px;
  }

  /* Blog cards */
  .ai-easy-way-page .blog-grid-ew {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-easy-way-page .blog-card-ew .blog-card-image-ew {
    height: 180px;
  }

  .ai-easy-way-page .blog-card-content-ew {
    padding: 16px;
  }

  .ai-easy-way-page .blog-card-content-ew h3 {
    font-size: 1.1rem;
  }

  /* Article pages */
  .ai-easy-way-page .article-header-ew {
    padding: 90px 0 40px;
  }

  .ai-easy-way-page .article-hero-ew {
    margin-top: -20px;
    padding: 0 16px;
  }

  .ai-easy-way-page .article-hero-ew img {
    border-radius: 12px;
  }

  .ai-easy-way-page .article-content-ew {
    padding: 30px 16px;
  }

  /* Newsletter */
  .ai-easy-way-page .newsletter-card-ew {
    padding: 30px 20px;
  }

  .ai-easy-way-page .newsletter-form-ew {
    flex-direction: column;
  }

  .ai-easy-way-page .newsletter-form-ew input,
  .ai-easy-way-page .newsletter-form-ew .btn {
    width: 100%;
  }

  /* Footer */
  .ai-easy-way-page .footer {
    padding: 40px 0 30px;
  }

  .ai-easy-way-page .footer-title {
    margin-bottom: 12px;
  }

  .ai-easy-way-page .footer-links li {
    margin-bottom: 8px;
  }
}
