/* =====================================================
   TadbirApp — Main Stylesheet
   ===================================================== */

/* ─── CSS Variables ─── */
:root {
  --primary: #0C4A2E;
  --primary-dark: #083520;
  --primary-light: #155E3D;
  --accent: #1DB954;
  --accent-dark: #17A348;
  --accent-hover: #15913E;
  --text: #0F1A13;
  --text-muted: #5C6B63;
  --text-light: #9CA3AF;
  --bg: #FFFFFF;
  --bg-soft: #F0FDF4;
  --bg-alt: #F8FAF8;
  --border: #E5EBE7;
  --border-strong: #CDD5CF;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .09);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .13);
  --shadow-accent: 0 8px 32px rgba(29, 185, 84, .22);
  --shadow-accent-sm: 0 4px 16px rgba(29, 185, 84, .18);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: 0.22s ease;
  --font: 'Public Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-h: 68px;
}

/* ─── Animations ─── */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utilities ─── */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.section {
  padding: 80px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: .875rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.mobile-only {
  display: none !important;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(29, 185, 84, .18);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 185, 84, .40);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(29, 185, 84, .18);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 185, 84, .45);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
}

/* ─── Section Tags ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bg-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(29, 185, 84, .35);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-tag.light {
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .3);
}

.section-tag.light::before {
  background: rgba(255, 255, 255, .75);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 610px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover,
.nav-dropdown-btn:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.dropdown-chevron {
  transition: transform var(--transition);
}

.nav-dropdown-btn[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  min-width: 440px;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  z-index: 999;
}

.dropdown.open {
  display: grid;
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.dropdown-link:hover {
  background: var(--bg-soft);
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.dropdown-link strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.dropdown-link p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, #04120B 0%, #0A2F1A 40%, var(--primary) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .12) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(29, 185, 84, .12);
  border: 1px solid rgba(29, 185, 84, .35);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: #86EFAC;
  margin-bottom: 28px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: ping 1.8s cubic-bezier(0, 0, .2, 1) infinite;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
}

/* Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 255, 255, .08);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  animation: float 5s ease-in-out infinite;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1a1a1a;
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #FF5F56;
}

.mockup-dot.yellow {
  background: #FFBD2E;
}

.mockup-dot.green {
  background: #27C93F;
}

.mockup-title {
  font-size: .75rem;
  color: #aaa;
  margin-left: 8px;
  font-family: monospace;
}

.mockup-body {
  display: flex;
  height: 260px;
}

.mockup-sidebar {
  width: 56px;
  background: #0C1A13;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-logo-sm {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  margin-bottom: 8px;
}

.mockup-nav-item {
  height: 6px;
  background: rgba(255, 255, 255, .12);
  border-radius: 3px;
}

.mockup-nav-item.active {
  background: var(--accent);
}

.mockup-content {
  flex: 1;
  padding: 14px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-stat {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
}

.mockup-stat.green {
  border-color: #1DB954;
}

.mockup-stat.blue {
  border-color: #3B82F6;
}

.mockup-stat.orange {
  border-color: #F59E0B;
}

.mockup-stat-val {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.mockup-stat-lbl {
  font-size: .625rem;
  color: var(--text-muted);
}

.mockup-table {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.mockup-row {
  height: 24px;
  background: #f0f4f8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6px;
}

.mockup-row.header {
  background: #e8f0e9;
  height: 18px;
}

.badge-green,
.badge-orange {
  width: 40px;
  height: 12px;
  border-radius: 10px;
}

.badge-green {
  background: #DCFCE7;
}

.badge-orange {
  background: #FEF3C7;
}

/* =============================================
   SECTION INTRO
   ============================================= */
.section-intro {
  padding: 64px 0 0;
  background: var(--bg-alt);
}

.section-intro .section-title {
  color: var(--text);
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: var(--bg-alt);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.feature-img-wrap {
  position: relative;
  padding: 28px;
  background: linear-gradient(140deg, #edf7f0 0%, #ddf0e6 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(29, 185, 84, .18);
}

.feature-screen {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .13), 0 2px 8px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fscreen-header {
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.fscreen-row {
  display: flex;
  gap: 6px;
}

.fscreen-cell {
  height: 28px;
  background: #f1f5f9;
  border-radius: 4px;
  flex: 1;
}

.fscreen-cell.wide {
  flex: 2.5;
}

.fscreen-cell.med {
  background: #e2e8f0;
}

.fscreen-cell.sm {
  flex: 0.8;
}

.fscreen-cell.green {
  background: #DCFCE7;
}

.fscreen-cell.orange {
  background: #FFE4B5;
}

.feature-badge-float {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--bg);
  border-color: rgba(29, 185, 84, .15);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-card p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   MOBILE SECTION
   ============================================= */
.mobile-section {
  background: var(--bg-soft);
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-content .section-title,
.mobile-content .section-desc {
  text-align: left;
  margin-left: 0;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.mobile-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mf-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-feature strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.mobile-feature p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Phone Mockup */
.mobile-phone {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  perspective: 1000px;
}

.phone-frame {
  width: 220px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .1);
  transform: rotateY(6deg) rotateX(2deg);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  padding: 12px;
  min-height: 380px;
}

.app-header-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.app-logo-sm {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 5px;
}

.app-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
}

.app-welcome {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.app-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.app-card {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 8px;
}

.app-card-val {
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.app-card-val.green {
  color: #16A34A;
}

.app-card-val.orange {
  color: #D97706;
}

.app-card-lbl {
  font-size: .625rem;
  color: var(--text-muted);
}

.app-section-title {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 10px 0 6px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-dot.green {
  background: #16A34A;
}

.app-dot.blue {
  background: #3B82F6;
}

.phone-button {
  width: 60px;
  height: 4px;
  background: #444;
  border-radius: 2px;
  margin: 8px auto 0;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.trust-items {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid var(--border);
  gap: 4px;
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.trust-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   DEMO FORM HEADER
   ============================================= */
.demo-form-header {
  text-align: center;
  margin: -40px -40px 28px;
  padding: 28px 40px 24px;
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
  overflow: hidden;
}

.demo-form-header::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .15) 0%, transparent 70%);
  top: -60px;
  right: -40px;
  pointer-events: none;
}

.demo-form-header h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 8px 0 0;
  position: relative;
}

/* Tier accent borders removed to match design */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.pricing-simulator {
  background: #fff;
  border: none;
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.pricing-simulator::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-simulator h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-simulator>p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, .12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

/* Slider */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 0%, var(--border) 0%);
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(29, 185, 84, .4);
  border: 4px solid var(--accent);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(29, 185, 84, .4);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.billing-toggle>span {
  font-size: .875rem;
  font-weight: 500;
}

.toggle-group {
  display: flex;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px;
  gap: 0;
}

.toggle-btn {
  padding: 8px 16px;
  font-size: .8125rem;
  font-weight: 500;
  border-radius: 100px;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--accent);
  color: #fff;
}

.price-result {
  background: #E8F5E9;
  border: 1px solid #1DB954;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-val {
  font-size: .9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-val strong {
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.simulator-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.sim-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--text-muted);
}

/* Pricing Tiers */
.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f4faf6;
  padding: 32px 28px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(29, 185, 84, .15);
}

.tiers-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--primary);
}

.tiers-note {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-card {
  background: var(--bg);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.tier-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.tier-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.tier-card.featured:hover {
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.25);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.tier-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.tier-range {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tier-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.tier-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1A7A52 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .15) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 60%);
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-section p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 0;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color var(--transition);
}

.cta-phone-link:hover {
  color: #fff;
}

.app-stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  transition: background var(--transition);
}

.store-btn:hover {
  background: rgba(255, 255, 255, .22);
}

/* Demo Form */
.demo-form {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
}

.form-message.success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.form-message.error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--bg-alt);
}

.faq-section .section-title {
  color: var(--text);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: var(--bg-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #071510;
  color: rgba(255, 255, 255, .65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-stores {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.store-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .8);
  transition: background var(--transition);
}

.store-link:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-whatsapp {
  color: #25D366 !important;
}

.footer-whatsapp:hover {
  color: #1EBE5A !important;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .8);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, #1A7A52 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .1) 0%, transparent 70%);
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}

.blog-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 540px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(29, 185, 84, .14);
  transform: translateY(-5px);
  border-color: rgba(29, 185, 84, .35);
}

.blog-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-tag.legal {
  background: #DBEAFE;
  color: #1D4ED8;
}

.blog-tag.conseil {
  background: #FEF3C7;
  color: #B45309;
}

.blog-tag.gestion {
  background: #DCFCE7;
  color: #166534;
}

.blog-tag.guide {
  background: #EDE9FE;
  color: #6D28D9;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}

.blog-card h3 a:hover {
  color: var(--accent-dark);
}

.blog-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-light);
}

.blog-card-meta svg {
  flex-shrink: 0;
}

/* Blog Article */
.article-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-breadcrumb {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-breadcrumb a {
  color: var(--accent-dark);
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-tag.legal {
  background: #DBEAFE;
  color: #1D4ED8;
}

.article-h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: .875rem;
  color: var(--text-muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  color: var(--primary);
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin: 12px 0 20px 24px;
}

.article-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 6px;
  list-style: disc;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--primary);
}

.article-cta-box {
  background: linear-gradient(140deg, var(--primary-dark), var(--primary), #1A7A52);
  border-radius: var(--radius-2xl);
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.article-cta-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .15) 0%, transparent 70%);
  top: -80px;
  right: -40px;
  pointer-events: none;
}

.article-cta-box h3 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.article-cta-box p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 24px;
  position: relative;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-method:hover {
  border-color: rgba(29, 185, 84, .5);
  box-shadow: 0 6px 24px rgba(29, 185, 84, .12);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method-text span {
  font-size: .875rem;
  color: var(--text-muted);
}

/* =============================================
   LOI 18-00 PAGE
   ============================================= */
.loi-hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, #1A7A52 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.loi-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, .1) 0%, transparent 70%);
  top: -80px;
  right: -50px;
  pointer-events: none;
}

.loi-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.loi-toc {
  background: var(--bg-soft);
  border: 1px solid #A7F3C0;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.loi-toc h3 {
  font-size: .95rem;
  margin-bottom: 12px;
}

.loi-toc ol {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loi-toc li {
  font-size: .875rem;
  list-style: decimal;
}

.loi-toc a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-20px);
}

[data-animate="fade-right"] {
  transform: translateX(20px);
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
  }

  .features-image {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-layout {
    grid-template-columns: 1fr;
  }

  .mobile-phone {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100vh - var(--nav-h));
    background: var(--bg);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    display: flex;
  }

  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link,
  .nav-dropdown-btn {
    padding: 14px 12px;
  }

  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    grid-template-columns: 1fr;
    padding: 8px 0;
    margin-top: 4px;
    display: none;
  }

  .dropdown.open {
    display: grid;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn.btn-primary {
    display: none;
  }
  
  .mobile-only {
    display: block !important;
  }

  .trust-item {
    padding: 16px 12px;
  }

  .trust-num {
    font-size: 1.3rem;
  }

  .demo-form-header {
    margin: -24px -24px 24px;
    padding: 22px 24px 20px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .simulator-includes {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-contact-row {
    flex-direction: column;
  }

  .app-stores {
    flex-direction: column;
    align-items: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .billing-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .demo-form {
    padding: 24px 20px;
  }

  .demo-form-header {
    margin: -24px -20px 24px;
    padding: 22px 20px 20px;
  }

  .pricing-simulator {
    padding: 24px 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-width: 50%;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .trust-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Print */
@media print {

  .header,
  .whatsapp-float,
  .footer {
    display: none;
  }
}