/* ==========================================================================
   EZHOST.VN — LIGHT MODERN SAAS DESIGN SYSTEM (SILKY SMOOTH 60FPS)
   Enhanced Micro-interactions, Fluid Transitions, Anime Floating Effect
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --ez-bg-base: #f8faff;
  --ez-bg-white: #ffffff;
  --ez-bg-subtle: #f1f5f9;
  --ez-bg-card: #ffffff;

  /* Primary Brand Accents */
  --ez-primary: #1677ff;
  --ez-primary-hover: #0958d9;
  --ez-primary-soft: #eff6ff;
  --ez-primary-border: #dbeafe;
  --ez-cyan: #0284c7;
  --ez-cyan-soft: #e0f2fe;
  --ez-violet: #6366f1;
  --ez-emerald: #10b981;
  --ez-emerald-soft: #ecfdf5;
  --ez-amber: #f59e0b;
  --ez-rose: #f43f5e;

  /* Gradients */
  --ez-grad-primary: linear-gradient(135deg, #1677ff 0%, #0099ff 100%);
  --ez-grad-hero-text: linear-gradient(135deg, #0f172a 30%, #1677ff 100%);

  /* Text Colors */
  --ez-text-heading: #0f172a;
  --ez-text-body: #334155;
  --ez-text-muted: #64748b;
  --ez-text-subtle: #94a3b8;

  /* Borders & Radius */
  --ez-border-subtle: #e2e8f0;
  --ez-border-card: #e9ecef;
  --ez-radius-sm: 8px;
  --ez-radius-md: 12px;
  --ez-radius-lg: 16px;
  --ez-radius-xl: 20px;
  --ez-radius-full: 9999px;

  /* Shadows */
  --ez-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.03);
  --ez-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --ez-shadow-md: 0 6px 18px rgba(22, 119, 255, 0.06);
  --ez-shadow-hover: 0 14px 30px -4px rgba(22, 119, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: var(--ez-bg-base);
}

body.ez-light-theme {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--ez-bg-base);
  color: var(--ez-text-body);
  line-height: 1.50;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(22, 119, 255, 0.16);
  color: #1677ff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.ez-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.ez-container-fluid {
  max-width: 96%;
}

/* Section Spacing */
.ez-section {
  position: relative;
  padding: 68px 0;
  z-index: 2;
}

.ez-section-sm {
  padding: 40px 0;
}

/* Header Text Utilities */
.ez-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.ez-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: var(--ez-primary-soft);
  border: 1px solid var(--ez-primary-border);
  border-radius: var(--ez-radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ez-primary);
  margin-bottom: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ez-badge-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(22, 119, 255, 0.12);
}

.ez-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ez-primary);
  box-shadow: 0 0 0 rgba(22, 119, 255, 0.4);
  animation: ez-radar-pulse 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-title-h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ez-text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ez-subtitle {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ez-text-muted);
  line-height: 1.6;
}

.ez-gradient-text {
  background: linear-gradient(135deg, #1677ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Background */
.ez-global-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: #f8faff;
}

.ez-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(22, 119, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 119, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Buttons */
.ez-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #1677ff 0%, #0088ee 100%);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--ez-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.22);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-btn-primary:hover {
  background: linear-gradient(135deg, #0958d9 0%, #0077dd 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 119, 255, 0.32);
}

.ez-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.ez-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  background: #ffffff;
  color: var(--ez-text-heading) !important;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--ez-radius-md);
  border: 1px solid var(--ez-border-subtle);
  box-shadow: var(--ez-shadow-xs);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-btn-secondary:hover {
  background: #f8faff;
  border-color: var(--ez-primary);
  color: var(--ez-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ez-btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

.ez-btn-sm {
  padding: 7px 14px;
  font-size: 13px;
  border-radius: var(--ez-radius-sm);
}

.ez-btn-lg {
  padding: 12px 26px;
  font-size: 14.5px;
  border-radius: var(--ez-radius-md);
}

/* ==========================================================================
   NAVBAR (WIDE, THICK, PROPORTIONAL)
   ========================================================================== */

.ez-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: padding 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-header.scrolled {
  padding: 5px 0;
}

.ez-header .ez-container-fluid {
  max-width: 96%;
  width: 100%;
  padding: 0 16px;
}

.ez-nav-bar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: var(--ez-radius-lg);
  padding: 6px 26px;
  min-height: 54px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-header.scrolled .ez-nav-bar {
  box-shadow: 0 6px 22px rgba(22, 119, 255, 0.08);
  border-color: #cbd5e1;
  min-height: 48px;
  padding: 5px 22px;
}

.ez-brand {
  display: flex;
  align-items: center;
}

.ez-brand-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.ez-brand:hover .ez-brand-logo {
  transform: scale(1.03);
}

.ez-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.ez-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ez-text-body);
  border-radius: var(--ez-radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-nav-link:hover,
.ez-nav-link.active {
  color: var(--ez-primary);
  background: var(--ez-primary-soft);
}

.ez-nav-dropdown {
  position: relative;
}

.ez-mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  min-width: 660px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ez-radius-lg);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.ez-nav-dropdown:hover .ez-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.ez-mega-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ez-primary);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f1f5f9;
}

.ez-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 9px;
  border-radius: var(--ez-radius-sm);
  margin-bottom: 3px;
  transition: all 0.2s ease;
}

.ez-mega-item:hover {
  background: var(--ez-primary-soft);
  transform: translateX(2px);
}

.ez-mega-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-primary);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ez-mega-item:hover .ez-mega-icon {
  transform: scale(1.1);
}

.ez-mega-info h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ez-text-heading);
}

.ez-mega-info p {
  font-size: 10.5px;
  color: var(--ez-text-muted);
}

.ez-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ez-nav-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: var(--ez-radius-full);
  background: var(--ez-primary-soft);
  border: 1px solid var(--ez-primary-border);
  color: var(--ez-primary);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ez-nav-user:hover {
  background: #dbeafe;
  transform: translateY(-1px);
}

.ez-mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ez-text-heading);
  font-size: 18px;
  padding: 0;
  transition: all 0.2s ease;
}

.ez-mobile-toggle:active {
  transform: scale(0.92);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */

.ez-mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.ez-mobile-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 350px;
  background: #ffffff;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-mobile-drawer.open .ez-mobile-content {
  transform: translateX(0);
}

.ez-mobile-head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
}

.ez-mobile-head img {
  height: 26px;
}

.ez-mobile-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ez-text-heading);
  cursor: pointer;
  transition: background 0.15s ease;
}

.ez-mobile-close:active {
  background: #e2e8f0;
}

.ez-mobile-body {
  flex: 1;
  padding: 16px 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ez-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ez-text-heading);
  transition: background 0.15s ease;
}

.ez-mobile-link:active {
  background: #f1f5f9;
  color: var(--ez-primary);
}

.ez-mobile-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin: 3px 0 6px;
}

.ez-mobile-accordion-toggle {
  width: 100%;
  padding: 11px 12px;
  background: #f8fafc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--ez-primary);
  cursor: pointer;
}

.ez-mobile-accordion-toggle iconify-icon {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
}

.ez-mobile-accordion.open .ez-mobile-accordion-body {
  max-height: 360px;
}

.ez-mobile-accordion.open .ez-mobile-accordion-toggle iconify-icon {
  transform: rotate(180deg);
}

.ez-mobile-sub-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-top: 1px solid #f8fafc;
  color: var(--ez-text-heading);
}

.ez-mobile-sub-item:active {
  background: #f1f5f9;
}

.ez-mobile-sub-item strong {
  display: block;
  font-size: 12.5px;
}

.ez-mobile-sub-item span {
  display: block;
  font-size: 11px;
  color: var(--ez-text-muted);
}

.ez-mobile-foot {
  padding: 16px 18px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   HERO SECTION & ORIGINAL CHARACTER FLOATING FADE EFFECT
   ========================================================================== */

.ez-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 96px 0 42px;
  z-index: 2;
}

.ez-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.ez-hero-content {
  position: relative;
  z-index: 3;
}

.ez-hero-h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ez-text-heading);
  margin-bottom: 14px;
}

.ez-hero-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ez-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 520px;
}

.ez-hero-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.ez-hero-features-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ez-text-heading);
}

.ez-hero-features-list iconify-icon {
  font-size: 17px;
  color: var(--ez-primary);
  flex-shrink: 0;
}

.ez-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.ez-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.ez-metric-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ez-metric-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--ez-primary);
  letter-spacing: -0.02em;
}

.ez-metric-lbl {
  font-size: 11px;
  color: var(--ez-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   ORIGINAL ANIME CHARACTER FADE & SMOOTH BREATHING FLOAT
   ========================================================================== */

.ez-hero-11-col {
  position: relative;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.hero-11__img-wrap {
  position: relative;
  display: inline-block;
  max-width: min(520px, 100%);
  line-height: 0;
  vertical-align: bottom;
  animation: ez-anime-float 6s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.ez-img-fade-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
  vertical-align: bottom;
}

.ez-img-fade-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 82%, rgba(0,0,0,.45) 94%, transparent 100%),
    linear-gradient(to top, #000 86%, transparent 100%),
    linear-gradient(to right, #000 88%, transparent 100%),
    linear-gradient(to left, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in, source-in, source-in;
  mask-image:
    linear-gradient(to bottom, #000 0%, #000 82%, rgba(0,0,0,.45) 94%, transparent 100%),
    linear-gradient(to top, #000 86%, transparent 100%),
    linear-gradient(to right, #000 88%, transparent 100%),
    linear-gradient(to left, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.ez-img-fade-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent 0%, var(--ez-bg-base, #f8faff) 92%);
  pointer-events: none;
}

/* ==========================================================================
   TECHNOLOGY MARQUEE (SMOOTH MASKED SIDES)
   ========================================================================== */

.ez-marquee-section {
  position: relative;
  padding: 16px 0;
  background: #ffffff;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  overflow: hidden;
  z-index: 2;
}

.ez-marquee-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.ez-marquee-wrap:hover .ez-marquee-track {
  animation-play-state: paused;
}

.ez-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: ez-marquee 28s linear infinite;
  transform: translateZ(0);
}

.ez-tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-full);
  color: var(--ez-text-body);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.ez-tech-chip:hover {
  transform: translateY(-2px);
  border-color: var(--ez-primary);
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(22, 119, 255, 0.08);
}

.ez-tech-chip iconify-icon {
  font-size: 16px;
  color: var(--ez-primary);
}

/* ==========================================================================
   COMPACT DOMAIN SEARCH CONSOLE
   ========================================================================== */

.ez-domain-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-md);
  padding: 28px 22px;
  box-shadow: var(--ez-shadow-xs);
  position: relative;
  transition: box-shadow 0.25s ease;
}

.ez-domain-card:hover {
  box-shadow: var(--ez-shadow-md);
}

.ez-search-box {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--ez-radius-md);
  padding: 4px 6px 4px 14px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-search-box:focus-within {
  border-color: var(--ez-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.ez-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ez-text-heading);
}

.ez-tld-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ez-tld-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: #f1f5f9;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-tld-badge:hover {
  background: #eff6ff;
  border-color: var(--ez-primary-border);
  transform: translateY(-1px);
}

.ez-tld-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ez-text-heading);
  font-family: var(--ez-font-mono);
}

.ez-tld-price {
  font-size: 11px;
  color: var(--ez-primary);
  font-weight: 600;
}

/* Search Results */
#searchResults {
  max-width: 620px;
  margin: 14px auto 0;
}

.ez-res-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-sm);
  margin-bottom: 5px;
  animation: ez-card-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ez-res-card.main-result {
  border-color: var(--ez-primary);
  background: #f0f7ff;
}

.ez-res-domain {
  font-size: 14px;
  font-weight: 700;
  color: var(--ez-text-heading);
}

.ez-res-domain span {
  color: var(--ez-primary);
}

.ez-res-status {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.ez-res-status.ok {
  background: #ecfdf5;
  color: #059669;
}

.ez-res-status.no {
  background: #fef2f2;
  color: #dc2626;
}

.ez-res-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ez-primary);
}

.ez-res-price small {
  font-size: 11px;
  color: var(--ez-text-muted);
}

/* ==========================================================================
   COMPACT & SLIM SERVICES CARDS
   ========================================================================== */

.ez-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ez-service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ez-shadow-xs);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--ez-primary-border);
  box-shadow: var(--ez-shadow-hover);
}

.ez-service-chip {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ez-primary);
  background: var(--ez-primary-soft);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ez-service-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--ez-radius-sm);
  background: var(--ez-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ez-primary);
  margin-bottom: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-service-card:hover .ez-service-icon-wrap {
  transform: scale(1.12) rotate(4deg);
}

.ez-service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ez-text-heading);
  margin-bottom: 4px;
}

.ez-service-desc {
  font-size: 12.5px;
  color: var(--ez-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.ez-service-specs {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ez-service-specs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ez-text-body);
}

.ez-service-specs iconify-icon {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
}

.ez-service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ez-primary);
  transition: transform 0.2s ease;
}

.ez-service-card:hover .ez-service-link {
  transform: translateX(3px);
}

/* ==========================================================================
   COMPACT & SLIM PRICING CARDS
   ========================================================================== */

.ez-pricing-tabs {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-md);
  padding: 4px;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--ez-shadow-xs);
}

.ez-pr-tab {
  padding: 8px 18px;
  border-radius: var(--ez-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ez-text-body);
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-pr-tab:hover:not(.active) {
  background: #f1f5f9;
  color: var(--ez-primary);
}

.ez-pr-tab.active {
  background: var(--ez-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.25);
}

.ez-pr-note {
  font-size: 12.5px;
  color: var(--ez-text-muted);
  margin-top: 10px;
}

.ez-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.ez-plan-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--ez-shadow-xs);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  animation: ez-card-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.ez-plan-card:nth-child(1) { animation-delay: 0.04s; }
.ez-plan-card:nth-child(2) { animation-delay: 0.08s; }
.ez-plan-card:nth-child(3) { animation-delay: 0.12s; }
.ez-plan-card:nth-child(4) { animation-delay: 0.16s; }

.ez-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--ez-primary);
  box-shadow: var(--ez-shadow-hover);
}

.ez-plan-card.popular {
  border: 2px solid var(--ez-primary);
}

.ez-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 9px;
  background: var(--ez-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--ez-radius-full);
  box-shadow: 0 2px 6px rgba(22, 119, 255, 0.3);
}

.ez-plan-header {
  text-align: center;
  margin-bottom: 10px;
}

.ez-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ez-text-heading);
  margin-bottom: 2px;
}

.ez-plan-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 14px;
}

.ez-plan-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--ez-text-heading);
  letter-spacing: -0.02em;
}

.ez-plan-unit {
  font-size: 11px;
  color: var(--ez-text-muted);
}

.ez-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  flex: 1;
}

.ez-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--ez-text-body);
  line-height: 1.35;
}

.ez-plan-features iconify-icon {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ez-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px;
  border-radius: var(--ez-radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-plan-btn.fill {
  background: var(--ez-primary);
  color: #fff;
}

.ez-plan-btn.fill:hover {
  background: var(--ez-primary-hover);
  transform: translateY(-1px);
}

.ez-plan-btn.line {
  background: #f8fafc;
  border: 1px solid #e9ecef;
  color: var(--ez-text-heading);
}

.ez-plan-btn.line:hover {
  background: var(--ez-primary);
  border-color: var(--ez-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   COMPACT BENTO GRID
   ========================================================================== */

.ez-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.ez-bento-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--ez-shadow-xs);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--ez-primary-border);
  box-shadow: var(--ez-shadow-hover);
}

.ez-bento-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--ez-radius-sm);
  background: var(--ez-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ez-primary);
  margin-bottom: 10px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-bento-card:hover .ez-bento-icon {
  transform: scale(1.1);
}

.ez-bento-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ez-text-heading);
  margin-bottom: 4px;
}

.ez-bento-desc {
  font-size: 12.5px;
  color: var(--ez-text-muted);
  line-height: 1.5;
}

.ez-bento-col-8 { grid-column: span 8; }
.ez-bento-col-4 { grid-column: span 4; }
.ez-bento-col-6 { grid-column: span 6; }
.ez-bento-col-12 { grid-column: span 12; }

/* Bento Uptime Bars */
.ez-uptime-bar-chart {
  display: flex;
  gap: 3px;
  height: 32px;
  align-items: flex-end;
  margin-top: 12px;
  padding: 5px;
  background: #f8fafc;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}

.ez-uptime-bar {
  flex: 1;
  background: #10b981;
  border-radius: 2px;
  height: 100%;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-bento-card:hover .ez-uptime-bar {
  filter: brightness(1.08);
}

/* Bento Speed Comparison */
.ez-speed-comparison {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ez-speed-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ez-speed-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--ez-text-body);
}

.ez-speed-track {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.ez-speed-fill-fast {
  height: 100%;
  width: 95%;
  background: linear-gradient(90deg, #1677ff, #0099ff);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-speed-fill-slow {
  height: 100%;
  width: 25%;
  background: #94a3b8;
  border-radius: 3px;
}

/* ==========================================================================
   COMPACT PERFORMANCE STATS
   ========================================================================== */

.ez-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ez-stat-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-sm);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--ez-shadow-xs);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ez-primary-border);
  box-shadow: var(--ez-shadow-md);
}

.ez-stat-number {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--ez-primary);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.ez-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ez-text-body);
}

/* ==========================================================================
   COMPACT MIGRATION SECTION
   ========================================================================== */

.ez-migration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.ez-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ez-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-sm);
  box-shadow: var(--ez-shadow-xs);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-timeline-item:hover {
  transform: translateX(4px);
  border-color: var(--ez-primary-border);
  box-shadow: var(--ez-shadow-md);
}

.ez-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ez-primary-soft);
  color: var(--ez-primary);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ez-timeline-item:hover .ez-step-num {
  transform: scale(1.1);
}

.ez-step-info h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ez-text-heading);
  margin-bottom: 1px;
}

.ez-step-info p {
  font-size: 12px;
  color: var(--ez-text-muted);
}

/* ==========================================================================
   COMPACT FAQ ACCORDION (SMOOTH SLIDE)
   ========================================================================== */

.ez-faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ez-faq-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: var(--ez-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ez-faq-item.active {
  border-color: var(--ez-primary-border);
  box-shadow: 0 4px 14px rgba(22, 119, 255, 0.06);
}

.ez-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ez-text-heading);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ez-faq-question:hover {
  background: #f8faff;
  color: var(--ez-primary);
}

.ez-faq-chevron {
  font-size: 16px;
  color: var(--ez-primary);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-faq-item.active .ez-faq-chevron {
  transform: rotate(180deg);
}

.ez-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--ez-text-muted);
  font-size: 13px;
  line-height: 1.6;
  padding: 0 18px;
}

.ez-faq-item.active .ez-faq-answer {
  padding: 0 18px 14px 18px;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */

.ez-final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #1677ff 0%, #0088ee 100%);
  border-radius: var(--ez-radius-md);
  padding: 44px 26px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.2);
}

.ez-cta-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.ez-cta-desc {
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 22px;
}

.ez-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ez-cta-buttons .ez-btn-white {
  background: #ffffff;
  color: var(--ez-primary) !important;
  font-weight: 700;
}

.ez-cta-buttons .ez-btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.ez-cta-buttons .ez-btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
}

.ez-cta-buttons .ez-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER (SLIM & CLEAN)
   ========================================================================== */

.ez-footer {
  position: relative;
  background: #ffffff;
  border-top: 1px solid #e9ecef;
  padding: 48px 0 18px;
  z-index: 2;
}

.ez-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 26px;
  margin-bottom: 32px;
}

.ez-footer-brand p {
  font-size: 12.5px;
  color: var(--ez-text-muted);
  line-height: 1.6;
  margin: 10px 0 14px;
  max-width: 280px;
}

.ez-footer-socials {
  display: flex;
  gap: 8px;
}

.ez-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-text-body);
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ez-footer-socials a:hover {
  background: var(--ez-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.ez-footer-col h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ez-text-heading);
  margin-bottom: 12px;
}

.ez-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ez-footer-links a {
  font-size: 12.5px;
  color: var(--ez-text-muted);
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.ez-footer-links a:hover {
  color: var(--ez-primary);
  transform: translateX(2px);
}

.ez-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ez-footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ez-text-muted);
}

.ez-footer-contact iconify-icon {
  color: var(--ez-primary);
  font-size: 15px;
  flex-shrink: 0;
}

.ez-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  color: var(--ez-text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.ez-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--ez-radius-full);
  color: #059669;
  font-size: 11.5px;
  font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes ez-radar-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 119, 255, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(22, 119, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 119, 255, 0); }
}

@keyframes ez-anime-float {
  0%, 100% { transform: translateY(0px) translateZ(0); }
  50% { transform: translateY(-9px) translateZ(0); }
}

@keyframes ez-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ez-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ez-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ez-spin {
  display: inline-block !important;
  animation: ez-spin 0.8s linear infinite !important;
  transform-origin: center center;
}

.ez-loading-wrap {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
  text-align: center;
  color: var(--ez-primary);
}

.ez-spinner-ring {
  width: 36px;
  height: 36px;
  border: 3.5px solid rgba(22, 119, 255, 0.15);
  border-top-color: var(--ez-primary);
  border-radius: 50%;
  animation: ez-spin 0.75s linear infinite;
  margin-bottom: 10px;
  display: inline-block;
}

.ez-loading-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ez-text-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .ez-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ez-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ez-nav-menu,
  .ez-nav-actions .ez-btn-primary,
  .ez-nav-actions .ez-btn-secondary {
    display: none !important;
  }
  .ez-mobile-toggle {
    display: flex !important;
  }
  .ez-hero {
    padding: 85px 0 35px;
    min-height: auto;
  }
  .ez-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .ez-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .ez-hero-features-list {
    align-items: center;
    margin-bottom: 20px;
  }
  .ez-hero-cta {
    justify-content: center;
  }
  .ez-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ez-hero-11-col {
    justify-content: center;
    text-align: center;
  }
  .ez-bento-col-8,
  .ez-bento-col-4,
  .ez-bento-col-6 {
    grid-column: span 12;
  }
  .ez-migration-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ez-timeline-item {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .ez-section {
    padding: 44px 0;
  }
  .ez-services-grid {
    grid-template-columns: 1fr;
  }
  .ez-pricing-grid {
    grid-template-columns: 1fr;
  }
  .ez-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ez-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ez-hero-metrics {
    grid-template-columns: 1fr;
  }
  .ez-domain-card {
    padding: 18px 14px;
  }
  .ez-search-box {
    flex-direction: column;
    padding: 6px;
    gap: 6px;
  }
  .ez-search-input {
    width: 100%;
    text-align: center;
    padding: 4px 0;
  }
  .ez-search-box button {
    width: 100%;
  }
  .ez-final-cta-card {
    padding: 30px 16px;
  }
  .ez-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
