 :root {
     /* Royal SaaS Palette - Premium Emerald & Gold */
     --primary-color: #065f46;
     --primary-dark: #064e3b;
     --primary-light: #d97706;
     --accent-color: #d97706;
     --accent-hover: #b45309;
     --royal-gold: #f59e0b;
     --royal-navy: #1e293b;
     --secondary-color: #64748b;
     --success-color: #059669;
     --danger-color: #dc2626;
     --warning-color: #f59e0b;
     --info-color: #0891b2;

     /* Premium Gradients */
     --primary-gradient: linear-gradient(135deg, #065f46 0%, #047857 50%, #10b981 100%);
     --accent-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
     --royal-gradient: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
     --gold-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
     --emerald-glow: linear-gradient(135deg, rgba(6, 95, 70, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);

     /* Section Backgrounds - Clean & Professional */
     --bg-hero: linear-gradient(180deg, #f0fdf4 0%, #ffffff 40%, #f8fafc 100%);
     --bg-features: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
     --bg-stats: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
     --bg-how-it-works: #ffffff;
     --bg-integrations: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
     --bg-testimonials: #ffffff;
     --bg-pricing: #ffffff;
     --bg-faq: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
     --bg-cta: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);

     /* Background Variables */
     --bg-primary: #ffffff;
     --bg-secondary: #f8fafc;
     --bg-muted: #f1f5f9;

     /* Text Variables */
     --text-primary: #0f172a;
     --text-secondary: #475569;
     --text-muted: #94a3b8;
     --text-white: #ffffff;

     /* Border Variables */
     --border-color: #e2e8f0;
     --border-light: #f1f5f9;
     --border-gold: rgba(217, 119, 6, 0.3);

     /* Shadow Variables - Premium depth */
     --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
     --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
     --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
     --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
     --shadow-gold: 0 0 30px rgba(217, 119, 6, 0.15);
     --shadow-emerald: 0 0 30px rgba(6, 95, 70, 0.12);

     /* Border Radius - Clean & modern */
     --radius-sm: 0.25rem;
     --radius-md: 0.375rem;
     --radius-lg: 0.5rem;
     --radius-xl: 0.75rem;
     --radius-full: 9999px;

     /* Font Variables - Small, clear fonts */
     --font-headings: 'Plus Jakarta Sans', sans-serif;
     --font-body: 'IBM Plex Sans', sans-serif;
     --font-ui: 'IBM Plex Sans', sans-serif;
     --font-mono: 'IBM Plex Mono', monospace;
 }

 * {
     box-sizing: border-box;
 }

 body {
     font-family: var(--font-body);
     font-size: 14px;
     font-weight: 400;
     line-height: 1.6;
     color: var(--text-primary);
     margin: 0;
     padding: 0;
     background: var(--bg-secondary);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

 /* Typography - Compact, clear */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-headings);
     font-weight: 600;
     letter-spacing: -0.02em;
     margin-bottom: 0.75rem;
     color: var(--text-primary);
     line-height: 1.2;
 }

 h1 {
     font-size: 2.25rem;
     font-weight: 700;
 }

 h2 {
     font-size: 1.75rem;
     font-weight: 700;
 }

 h3 {
     font-size: 1.375rem;
     font-weight: 600;
 }

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

 h5 {
     font-size: 1rem;
     font-weight: 600;
 }

 h6 {
     font-size: 0.875rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 p {
     font-size: 0.875rem;
     line-height: 1.7;
 }

 small {
     font-size: 0.75rem;
 }

 .text-sm {
     font-size: 0.8125rem;
 }

 .text-xs {
     font-size: 0.75rem;
 }

 /* ===== NAVIGATION - Premium Glass SaaS ===== */
 .navbar {
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(20px) saturate(180%);
     -webkit-backdrop-filter: blur(20px) saturate(180%);
     border-bottom: 1px solid rgba(6, 95, 70, 0.08);
     padding: 0;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .navbar .container {
     height: 68px;
     display: flex;
     align-items: center;
 }

 .navbar-brand {
     font-family: var(--font-headings);
     font-weight: 800;
     font-size: 1.1875rem;
     color: var(--primary-color);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.625rem;
     letter-spacing: -0.01em;
 }

 .navbar-brand .brand-icon {
     width: 34px;
     height: 34px;
     background: var(--primary-gradient);
     border-radius: var(--radius-md);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.875rem;
     box-shadow: 0 4px 10px rgba(6, 95, 70, 0.25);
 }

 .navbar-brand .brand-text {
     display: flex;
     flex-direction: column;
     line-height: 1;
 }

 .navbar-brand .brand-name {
     font-size: 1rem;
     font-weight: 800;
     color: var(--text-primary);
     letter-spacing: -0.02em;
 }

 .navbar-brand .brand-tag {
     font-size: 0.5625rem;
     font-weight: 500;
     color: var(--accent-color);
     letter-spacing: 0.08em;
     text-transform: uppercase;
 }

 .navbar-nav {
     align-items: center;
 }

 .navbar-nav .nav-link {
     font-family: var(--font-ui);
     font-size: 0.8125rem;
     font-weight: 500;
     color: var(--text-secondary);
     padding: 0.4rem 0.875rem;
     margin: 0 0.125rem;
     border-radius: var(--radius-md);
     transition: all 0.2s ease;
     position: relative;
 }

 .navbar-nav .nav-link:hover {
     color: var(--primary-color);
     background: rgba(6, 95, 70, 0.06);
 }

 .navbar-nav .nav-link.active {
     color: var(--primary-color);
     background: rgba(6, 95, 70, 0.08);
     font-weight: 600;
 }

 .nav-divider {
     width: 1px;
     height: 20px;
     background: var(--border-color);
     margin: 0 0.5rem;
 }

 .nav-login-link {
     font-family: var(--font-ui);
     font-size: 0.8125rem;
     font-weight: 500;
     color: var(--text-secondary);
     text-decoration: none;
     padding: 0.4rem 0.875rem;
     border-radius: var(--radius-md);
     transition: all 0.2s ease;
 }

 .nav-login-link:hover {
     color: var(--primary-color);
 }

 /* Buttons - Clean Emerald Styling */
 .btn-primary-custom {
     background: linear-gradient(145deg, #065f46 0%, #047857 50%, #059669 100%);
     border: none;
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: var(--radius-md);
     font-family: var(--font-ui);
     font-size: 0.8125rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s ease;
     box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
 }

 .btn-primary-custom:hover {
     background: linear-gradient(145deg, #064e3b 0%, #065f46 50%, #047857 100%);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(6, 95, 70, 0.35);
     color: white;
 }

 .btn-primary-custom i {
     font-size: 0.75rem;
 }

 /* Gold/Amber button - stands out on dark green CTA backgrounds */
 .btn-gold {
     background: linear-gradient(145deg, #b45309 0%, #d97706 50%, #f59e0b 100%) !important;
     box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35) !important;
     color: white !important;
 }

 .btn-gold:hover {
     background: linear-gradient(145deg, #92400e 0%, #b45309 50%, #d97706 100%) !important;
     box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5) !important;
     color: white !important;
 }

 .btn-emerald-custom {
     background: var(--primary-gradient);
     border: none;
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: var(--radius-md);
     font-family: var(--font-ui);
     font-size: 0.8125rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s ease;
     box-shadow: var(--shadow-emerald);
 }

 .btn-emerald-custom:hover {
     background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(6, 95, 70, 0.25);
     color: white;
 }

 .btn-outline-custom {
     background: transparent;
     border: 1.5px solid currentColor;
     color: inherit;
     padding: 0.75rem 1.5rem;
     border-radius: var(--radius-md);
     font-family: var(--font-ui);
     font-size: 0.8125rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.2s ease;
 }

 .btn-outline-custom:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
 }

 .btn-outline-dark {
     background: #1e293b;
     border: 2px solid #334155;
     color: #ffffff !important;
     box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
 }

 .btn-outline-dark:hover {
     background: #334155;
     border-color: #475569;
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
 }

 .btn-outline-emerald {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 .btn-outline-emerald:hover {
     background: rgba(6, 95, 70, 0.05);
     color: var(--primary-color);
 }

 /* Main Content */
 .main-content {
     margin-top: 65px;
     min-height: calc(100vh - 80px);
 }

 /* Section Styles */
 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-title h2 {
     margin-bottom: 1rem;
 }

 .section-title p {
     color: var(--text-secondary);
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Pricing Section Styles */
 .pricing-section {
     padding: 6rem 0;
     background: var(--bg-primary);
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .pricing-card {
     background: white;
     border-radius: var(--radius-xl);
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
     padding: 2.5rem 2rem;
     text-align: center;
     position: relative;
     border: 1px solid var(--border-light);
     transition: all 0.3s ease;
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
 }

 .pricing-card.featured {
     border: 2px solid var(--primary-color);
     transform: scale(1.05);
 }

 .pricing-card.featured::before {
     content: 'Most Popular';
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--primary-gradient);
     color: white;
     padding: 0.5rem 1.5rem;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
 }

 .pricing-header {
     margin-bottom: 2rem;
 }

 .pricing-plan {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 0.5rem;
 }

 .pricing-description {
     color: var(--text-secondary);
     font-size: 1rem;
     margin-bottom: 1.5rem;
 }

 .pricing-price {
     display: flex;
     align-items: baseline;
     justify-content: center;
     gap: 0.25rem;
     margin-bottom: 0.5rem;
 }

 .pricing-currency {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--text-primary);
 }

 .pricing-amount {
     font-size: 3rem;
     font-weight: 700;
     color: var(--text-primary);
 }

 .pricing-period {
     font-size: 1rem;
     color: var(--text-secondary);
 }

 .pricing-features {
     list-style: none;
     padding: 0;
     margin: 2rem 0;
 }

 .pricing-features li {
     padding: 0.75rem 0;
     border-bottom: 1px solid var(--border-light);
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .pricing-features li:last-child {
     border-bottom: none;
 }

 .pricing-features .check-icon {
     color: var(--success-color);
     font-weight: 600;
 }

 .pricing-features .x-icon {
     color: var(--text-muted);
 }

 .pricing-cta {
     margin-top: 2rem;
 }

 .pricing-card .btn-primary-custom,
 .pricing-card .btn-outline-custom {
     width: 100%;
     justify-content: center;
 }

 .pricing-section .btn-outline-custom {
     border-color: var(--primary-color);
     color: var(--primary-color);
 }

 .pricing-section .btn-outline-custom:hover {
     background: var(--primary-gradient);
     border-color: transparent;
     color: white;
 }

 /* ===== FOOTER - Match Hero Background ===== */
 .footer {
     background:
         radial-gradient(circle at 20% 80%, rgba(6, 95, 70, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
         radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%),
         linear-gradient(180deg, #f0fdf4 0%, #ffffff 40%, #f8fafc 100%);
     color: #475569;
     padding: 0;
     position: relative;
     overflow: hidden;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.4) 30%, rgba(6, 95, 70, 0.6) 50%, rgba(16, 185, 129, 0.4) 70%, transparent 100%);
 }

 .footer-top {
     padding: 4rem 0 3rem;
     border-bottom: 1px solid var(--border-light);
 }

 .footer-brand-col {
     padding-right: 3rem;
 }

 .footer-brand {
     display: flex;
     align-items: center;
     gap: 0.625rem;
     margin-bottom: 1.25rem;
     text-decoration: none;
 }

 .footer-brand .brand-icon {
     width: 36px;
     height: 36px;
     background: var(--primary-gradient);
     border-radius: var(--radius-md);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.9rem;
 }

 .footer-brand-name {
     font-family: var(--font-headings);
     font-size: 1.0625rem;
     font-weight: 800;
     color: var(--primary-color);
     letter-spacing: -0.02em;
 }

 .footer-desc {
     font-size: 0.8125rem;
     line-height: 1.7;
     color: var(--text-secondary);
     margin-bottom: 1.75rem;
     max-width: 280px;
 }

 .footer-social {
     display: flex;
     gap: 0.625rem;
 }

 .footer-social a {
     width: 34px;
     height: 34px;
     border-radius: var(--radius-md);
     background: rgba(6, 95, 70, 0.08);
     border: 1px solid rgba(6, 95, 70, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 0.8125rem;
     text-decoration: none;
     transition: all 0.2s ease;
 }

 .footer-social a:hover {
     background: rgba(16, 185, 129, 0.15);
     border-color: rgba(16, 185, 129, 0.3);
     color: #10b981;
     transform: translateY(-2px);
 }

 .footer-col-title {
     font-family: var(--font-ui);
     font-size: 0.6875rem;
     font-weight: 700;
     color: var(--text-primary);
     text-transform: uppercase;
     letter-spacing: 0.1em;
     margin-bottom: 1.25rem;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 0.625rem;
 }

 .footer-links a {
     font-size: 0.8125rem;
     color: var(--text-secondary);
     text-decoration: none;
     transition: all 0.2s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.375rem;
 }

 .footer-links a:hover {
     color: #10b981;
     gap: 0.5rem;
 }

 .footer-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.375rem;
     background: rgba(6, 95, 70, 0.2);
     border: 1px solid rgba(16, 185, 129, 0.2);
     color: #6ee7b7;
     font-size: 0.6875rem;
     font-weight: 600;
     padding: 0.3rem 0.75rem;
     border-radius: var(--radius-full);
     margin-bottom: 1.5rem;
 }

 .footer-bottom {
     padding: 1.25rem 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 0.75rem;
 }

 .footer-bottom-left {
     font-size: 0.75rem;
     color: var(--text-muted);
 }

 .footer-bottom-right {
     display: flex;
     gap: 1.5rem;
 }

 .footer-bottom-right a {
     font-size: 0.75rem;
     color: var(--text-secondary);
     text-decoration: none;
     transition: color 0.2s ease;
 }

 .footer-bottom-right a:hover {
     color: #10b981;
 }

 .footer-payment {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-left: 1rem;
     padding-left: 1rem;
     border-left: 1px solid var(--border-light);
 }

 .footer-payment i {
     font-size: 1.25rem;
     color: var(--text-muted);
     transition: color 0.2s ease;
 }

 .footer-payment i:hover {
     color: #10b981;
 }

 /* Animation */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* FAQ Styles */
 .faq-item {
     background: white;
     border-radius: var(--radius-lg);
     margin-bottom: 1rem;
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border-light);
 }

 .faq-question {
     width: 100%;
     padding: 1.5rem;
     background: none;
     border: none;
     text-align: left;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--text-primary);
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     color: var(--primary-color);
 }

 .faq-icon {
     transition: transform 0.3s ease;
 }

 .faq-icon.rotate {
     transform: rotate(180deg);
 }

 .faq-answer {
     padding: 0 1.5rem;
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     color: var(--text-secondary);
     line-height: 1.6;
 }

 .faq-answer.show {
     padding: 0 1.5rem 1.5rem;
     max-height: 200px;
 }

 /* Media queries → see /css/responsive.css */