
:root {
  /* Fresh Modern SaaS Palette */
  --primary: #1e3a8a; /* Blue 900 */
  --secondary: #2563eb; /* Blue 600 */
  --accent: #f59e0b; /* Amber 500 */
  --heading: #0f172a; /* Slate 900 */
  --text: #334155; /* Slate 700 */
  --text-light: #64748b; /* Slate 500 */
  --bg-light: #f8fafc; /* Slate 50 */
  --white: #ffffff;
  --light-blue: #eff6ff; /* Blue 50 */
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
  overflow-x: hidden; 
  width: 100%; 
  position: relative;
}
html { scroll-behavior: smooth; }
body { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  color: var(--text); 
  background: var(--white); 
  line-height: 1.7; 
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; color: var(--heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; scroll-margin-top: 100px; }
.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary); }
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.justify-center { justify-content: center; }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Typography */
.display-1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -1px; line-height: 1.1; }
.display-2 { font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.5px; line-height: 1.1; }
.lead { font-size: clamp(16px, 2vw, 18px); color: var(--text-light); }
.subtitle { color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; display: block; margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.section-title h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 20px; }
.section-title h2 span { color: var(--secondary); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-2 > div { min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-3 > div { min-width: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-4 > div { min-width: 0; }
.align-center { align-items: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); border: 2px solid transparent; font-family: 'Outfit', sans-serif; font-size: 15px; text-align: center; }
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39); }
.btn-outline-dark { border-color: #cbd5e1; color: var(--heading); background: transparent; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23); background: #1d4ed8; color: white; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23); background: #d97706; color: white; }
.btn-outline-dark:hover { border-color: var(--heading); background: var(--bg-light); }

.pulse-btn { animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }

/* Top Bar */
.top-bar { background: var(--primary); color: rgba(255,255,255,0.8); padding: 10px 0; font-size: 13px; font-weight: 500; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-contact { display: flex; gap: 24px; }
.top-contact i { color: var(--accent); margin-right: 6px; }
.top-social { display: flex; gap: 16px; }
.top-social a:hover { color: var(--white); }

/* Header */
.header { position: fixed; top: 41px; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); z-index: 1000; height: 80px; display: flex; align-items: center; transition: var(--transition); border-bottom: 1px solid #f1f5f9; }
.header.scrolled { top: 0; box-shadow: var(--shadow-md); }
.top-bar { position: relative; z-index: 1001; }
.main-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--heading); font-family: 'Outfit', sans-serif; letter-spacing: -0.5px; }
.logo-icon { width: 40px; height: 40px; background: var(--light-blue); color: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.logo span { color: var(--secondary); font-weight: 400; }

.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links > li > a { font-weight: 600; color: var(--text); font-size: 15px; transition: color 0.2s; }
.nav-links > li > a:not(.btn):hover { color: var(--secondary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: var(--radius-md); padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); list-style: none; border: 1px solid #e2e8f0; margin-top: 15px; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 24px; color: var(--text); font-weight: 500; transition: all 0.2s; }
.dropdown-menu li a:hover { background: var(--light-blue); color: var(--secondary); padding-left: 28px; }

.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--heading); }
.header-spacer { height: 121px; }

/* Hero Home - Split Layout */
.hero-home { padding: 100px 0 120px; background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%); overflow: hidden; }
.hero-home .badge { display: inline-block; background: white; color: var(--secondary); padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 14px; border: 1px solid #e2e8f0; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.trust-metrics { display: flex; align-items: center; gap: 30px; }
.metric strong { display: block; font-size: 28px; color: var(--heading); font-family: 'Outfit', sans-serif; line-height: 1; }
.metric span { font-size: 14px; color: var(--text-light); }
.trust-metrics .divider { width: 1px; height: 40px; background: #cbd5e1; }

.image-composition { position: relative; }
.image-composition .main-img { border-radius: 24px; box-shadow: var(--shadow-xl); border: 8px solid white; }
.floating-badge { position: absolute; background: white; padding: 16px 24px; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-lg); animation: float 6s ease-in-out infinite; z-index: 2; border: 1px solid #f1f5f9; }
.floating-badge .icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.floating-badge strong { display: block; font-size: 16px; color: var(--heading); line-height: 1.2; font-family: 'Outfit', sans-serif; }
.floating-badge span { font-size: 13px; color: var(--text-light); }

.badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-2 { bottom: 15%; right: -5%; animation-delay: 2s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Modern Course Cards (Overhaul) */
.course-card-modern { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid #e2e8f0; transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.course-card-modern:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: #cbd5e1; }
.card-image { position: relative; height: 200px; overflow: hidden; background: #e2e8f0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card-modern:hover .card-image img { transform: scale(1.05); }
.lang-tag { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); padding: 6px 16px; border-radius: 30px; font-weight: 700; color: var(--heading); font-size: 14px; box-shadow: var(--shadow-sm); }
.card-body { padding: 30px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 22px; margin-bottom: 8px; }
.card-body p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; flex-grow: 1; }
.card-features { list-style: none; margin-bottom: 24px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.card-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.card-features i { color: #10b981; font-size: 16px; }
.course-link { display: inline-flex; align-items: center; gap: 8px; color: var(--secondary); font-weight: 700; font-size: 15px; font-family: 'Outfit', sans-serif; }
.course-link:hover { gap: 12px; color: var(--primary); }

/* Stats Grid */
.stats-grid { padding: 40px 0; }
.stat-card { padding: 20px; }
.stat-number { font-size: 56px; font-weight: 800; font-family: 'Outfit', sans-serif; line-height: 1; margin-bottom: 8px; }
.stat-text { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

/* Methodology Cards */
.process-card { background: white; padding: 40px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid #e2e8f0; transition: var(--transition); text-align: center; }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.process-icon { width: 70px; height: 70px; background: var(--light-blue); color: var(--secondary); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; transition: var(--transition); }
.process-card:hover .process-icon { background: var(--secondary); color: white; transform: rotate(10deg); }
.process-card h3 { font-size: 20px; margin-bottom: 12px; }
.process-card p { font-size: 15px; color: var(--text-light); }

/* Testimonials */
.avatar-group { display: flex; align-items: center; }
.avatar-group img { width: 48px; height: 48px; border-radius: 50%; border: 3px solid white; margin-left: -15px; object-fit: cover; }
.avatar-group img:first-child { margin-left: 0; }
.avatar-more { width: 48px; height: 48px; border-radius: 50%; border: 3px solid white; background: var(--bg-light); display: flex; align-items: center; justify-content: center; margin-left: -15px; font-size: 13px; font-weight: 700; color: var(--text); z-index: 1; }
.stars { color: #eab308; font-size: 18px; margin-bottom: 4px; }

.test-card { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid #e2e8f0; position: relative; }
.quote-icon { font-size: 48px; color: var(--light-blue); position: absolute; top: 30px; right: 30px; z-index: 0; }
.test-card p { font-size: 18px; color: var(--heading); line-height: 1.6; margin-bottom: 30px; position: relative; z-index: 1; font-family: 'Outfit', sans-serif; font-weight: 500; }
.test-author h4 { font-size: 16px; margin: 0; }
.test-author span { font-size: 14px; color: var(--text-light); }
.swiper-pagination-bullet-active { background: var(--secondary) !important; }

/* FAQ */
.faq-item { background: white; border-radius: var(--radius-md); margin-bottom: 16px; box-shadow: var(--shadow-sm); border: 1px solid #e2e8f0; overflow: hidden; }
.faq-header { padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-header h3 { font-size: 18px; margin: 0; }
.faq-header i { color: var(--text-light); transition: var(--transition); }
.faq-item.active .faq-header i { transform: rotate(45deg); color: var(--secondary); }
.faq-content { padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-content { padding: 0 30px 24px; max-height: 400px; }
.faq-content p { color: var(--text-light); }

/* CTA Box */
.cta-box { background: white; padding: 60px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0; }

/* Subpages Heroes */
.page-title-banner { padding: 120px 0 80px; background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.page-title-banner h1 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 16px; }
.page-title-banner h1 span { color: var(--secondary); }
.page-title-banner p { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.page-hero { padding: 120px 0; background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }
.page-hero .badge { display: inline-block; background: white; color: var(--secondary); padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 14px; border: 1px solid #e2e8f0; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-features-list { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-features-list span { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--heading); }
.hero-features-list i { color: var(--accent); font-size: 18px; }

/* Lists & Forms */
.feature-list-custom { list-style: none; }
.feature-list-custom li { display: flex; gap: 16px; margin-bottom: 24px; }
.icon-check { width: 28px; height: 28px; background: #dcfce7; color: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.curriculum-card { background: white; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid #e2e8f0; transition: var(--transition); }
.curriculum-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); }
.level-badge { display: inline-block; background: var(--light-blue); color: var(--secondary); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; }
.curriculum-list { list-style: none; }
.curriculum-list li { margin-bottom: 12px; display: flex; gap: 10px; color: var(--text-light); }
.curriculum-list i { color: #cbd5e1; margin-top: 5px; font-size: 12px; }

.form-control { width: 100%; padding: 16px; border: 1px solid #cbd5e1; border-radius: 12px; font-size: 16px; outline: none; transition: var(--transition); font-family: inherit; background: white; }
.form-control:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }

/* Footer */
.footer-top { padding: 60px 0 40px; background: var(--primary); }
.footer-col h3 { color: white; font-size: 18px; margin-bottom: 24px; font-family: 'Outfit', sans-serif; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; font-weight: 500; font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 16px; color: #94a3b8; font-size: 15px; }
.footer-contact .icon { color: var(--accent); font-size: 18px; margin-top: 2px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-bottom { background: #0f172a; padding: 24px 0; color: #64748b; font-size: 14px; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-home .grid-2, .page-hero .grid-2, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .floating-badge { display: none; }
  .contact-wrapper { flex-direction: column !important; }
  .section-padding { padding: 70px 0; }
  .container { padding: 0 20px; }
  /* Mobile nav triggers at 1024px so landscape is covered */
  .top-bar { display: none; }
  .header { top: 0; height: 70px; }
  .header-spacer { height: 70px; }
  .logo { font-size: 18px; gap: 8px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px; }
  .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: white; flex-direction: column; gap: 0; padding: 20px 24px; transition: var(--transition); overflow-y: auto; z-index: 999; box-shadow: var(--shadow-lg); }
  .nav-links.active { left: 0; }
  .nav-links > li { border-bottom: 1px solid #f1f5f9; }
  .nav-links > li > a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-links .btn { width: 100%; text-align: center; margin-top: 10px; }
  .hamburger { display: block; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 10px 20px; display: none; border: none; margin-top: 0; }
  .dropdown.active .dropdown-menu { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }

  /* Hero Mobile */
  .display-1 { font-size: clamp(28px, 8vw, 36px); letter-spacing: -0.5px; }
  .display-2 { font-size: clamp(26px, 7vw, 32px); }
  .hero-home { padding: 40px 0 60px; text-align: center; }
  .hero-home .lead { font-size: 15px; padding: 0; }
  .hero-home .badge { font-size: 12px; padding: 6px 16px; }
  .hero-home .btn-group { align-items: center; }
  .hero-home .btn { font-size: 14px !important; padding: 14px 24px !important; }
  .hero-visual { display: none; }
  .trust-metrics { justify-content: center; gap: 20px; margin-top: 30px; }
  .metric strong { font-size: 22px; }
  .metric span { font-size: 12px; }
  .trust-metrics .divider { height: 30px; }

  /* Buttons */
  .btn-group { flex-direction: column; gap: 12px; width: 100%; }
  .btn-group a { width: 100%; }
  .btn { padding: 12px 20px; font-size: 14px; }

  /* Page Heroes */
  .page-title-banner { padding: 80px 0 50px; }
  .page-title-banner h1 { font-size: clamp(28px, 7vw, 36px); }
  .page-title-banner p { font-size: 15px; }
  .page-hero { padding: 60px 0; text-align: center; }
  .page-hero .grid-2 { text-align: center; }
  .page-hero .image-composition { margin-top: 20px; }
  .page-hero .image-composition .main-img { border-width: 4px; }
  .hero-features-list { justify-content: center; gap: 16px; }
  .hero-features-list span { font-size: 14px; }

  /* Stats */
  .stats-grid { gap: 0; }
  .stats-grid .stat-card { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
  .stat-number { font-size: 36px; }
  .stat-text { font-size: 13px; }

  /* Cards */
  .course-card-modern { margin: 0; }
  .card-image { height: 180px; }
  .card-body { padding: 20px 16px; }
  .card-body h3 { font-size: 20px; }

  /* Sections */
  .section-padding { padding: 50px 0; }
  .section-title h2 { font-size: clamp(24px, 6vw, 32px); }
  .section-title p { font-size: 14px; }
  .subtitle { font-size: 12px; letter-spacing: 1.5px; }

  /* Process Cards */
  .process-card { padding: 30px 20px; }
  .process-icon { width: 60px; height: 60px; font-size: 24px; border-radius: 16px; }
  .process-card h3 { font-size: 18px; }
  .process-card p { font-size: 14px; }

  /* Testimonials */
  .test-card { padding: 24px; }
  .test-card p { font-size: 16px; }
  .quote-icon { font-size: 32px; top: 20px; right: 20px; }
  .avatar-group img { width: 40px; height: 40px; }
  .avatar-more { width: 40px; height: 40px; font-size: 12px; }

  /* FAQ */
  .faq-header { padding: 18px 20px; }
  .faq-header h3 { font-size: 16px; }
  .faq-content { padding: 0 20px; }
  .faq-item.active .faq-content { padding: 0 20px 20px; }

  /* CTA */
  .cta-box { padding: 30px 20px; }
  .cta-box h2 { font-size: clamp(22px, 5vw, 28px); }
  .cta-box p { font-size: 14px; }

  /* Footer */
  .footer-top { padding: 40px 0 20px; }
  .footer-top .grid-4 { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-col h3 { font-size: 16px; margin-bottom: 16px; }
  .footer-links a { font-size: 14px; }
  .footer-contact li { font-size: 14px; }
  .footer-bottom p { font-size: 12px; }

  /* Contact */
  .contact-info, .contact-form { padding: 30px 20px !important; }
  .contact-form form div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Curriculum */
  .curriculum-card { padding: 24px 20px; }
  .feature-list-custom li { gap: 12px; }

  /* WhatsApp Float */
  .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 16px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .display-1 { font-size: 26px; }
  .display-2 { font-size: 24px; }
  .hero-home { padding: 30px 0 50px; }
  .footer-top .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-number { font-size: 30px; }
  .section-padding { padding: 40px 0; }
  .cta-box { padding: 24px 16px; }
}

/* Landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
  .header { height: 60px; }
  .header-spacer { height: 60px; }
  .nav-links { top: 60px; height: calc(100vh - 60px); padding: 10px 24px; }
  .nav-links > li > a { padding: 10px 0; font-size: 14px; }
  .hero-home { padding: 20px 0 40px; }
  .hero-home .display-1 { font-size: 28px; }
  .hero-home .lead { font-size: 13px; }
  .hero-home .btn { padding: 10px 20px !important; font-size: 13px !important; }
  .section-padding { padding: 40px 0; }
  .page-title-banner { padding: 60px 0 40px; }
  .page-hero { padding: 40px 0; }
  .whatsapp-float { width: 44px; height: 44px; font-size: 22px; bottom: 12px; right: 12px; }
}
