:root {
  --primary: #008B95;
  --primary-dark: #006589;
  --primary-soft: #E0F4F5;
  --coral: #FF8E53;
  --coral-soft: #FFE5D6;
  --mint: #10B981;
  --mint-soft: #D1FAE5;
  --sun: #FFB627;
  --sun-soft: #FEF3C7;
  --sky: #38BDF8;
  --sky-soft: #E0F2FE;
  --cream: #F4F8FA;
  --cream-deep: #E8F0F2;
  --ink: #0A2A3A;
  --ink-soft: #3A4A55;
  --muted: #6B7280;
  --line: #E5E7EB;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 42, 58, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 42, 58, 0.15);
  --shadow-pop: 0 24px 80px rgba(0, 139, 149, 0.18);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(255, 248, 241, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(229, 231, 235, 0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.logo-mark { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 4px; font-size: 13px; font-weight: 600; }
.lang-btn { padding: 5px 12px; border-radius: 999px; cursor: pointer; border: none; background: transparent; color: var(--muted); font-family: inherit; font-weight: 600; transition: all 0.2s; text-decoration: none; }
.lang-btn.active { background: var(--ink); color: white; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: 999px; font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s ease; white-space: nowrap; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(10, 42, 58, 0.08); }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-pop); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #E66B30; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(255, 142, 83, 0.45); }
.btn-large { padding: 16px 32px; font-size: 16px; }

.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.shape-1 { background: var(--coral); width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { background: var(--sun); width: 300px; height: 300px; bottom: -50px; left: -100px; opacity: 0.4; }
.shape-3 { background: var(--mint); width: 200px; height: 200px; top: 40%; left: 30%; opacity: 0.25; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.eyebrow-dot { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px var(--mint-soft); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--mint-soft); } 50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2); } }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 24px; }
.hero h1 .accent { position: relative; display: inline-block; color: var(--primary); }
.hero h1 .accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 14px; background: var(--sun); z-index: -1; border-radius: 4px; transform: rotate(-1deg); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 6px; }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--mint); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

.hero-visual { position: relative; }
.dashboard-mock { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(-1deg); position: relative; z-index: 2; }
.dashboard-toolbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: #F9FAFB; border-bottom: 1px solid var(--line); }
.dashboard-toolbar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dashboard-toolbar .dot:nth-child(1) { background: #FF8E53; }
.dashboard-toolbar .dot:nth-child(2) { background: #FFB627; }
.dashboard-toolbar .dot:nth-child(3) { background: #34D399; }
.dashboard-url { margin-left: 12px; font-size: 12px; color: var(--muted); font-family: 'SF Mono', Monaco, monospace; }
.dashboard-content { padding: 18px; background: #FAFAFB; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dashboard-title { font-size: 16px; font-weight: 700; color: var(--ink); }
.dashboard-pill { font-size: 11px; background: var(--primary-soft); color: var(--primary-dark); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kanban-col { background: white; border-radius: var(--radius-md); padding: 10px; border: 1px solid var(--line); }
.kanban-col-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 11px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; }
.kanban-col-count { background: #F3F4F6; color: var(--muted); padding: 2px 7px; border-radius: 999px; font-size: 10px; }
.kanban-card { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 9px; margin-bottom: 7px; font-size: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.kanban-card-tag { display: inline-block; font-size: 9px; padding: 2px 7px; border-radius: 999px; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.tag-purple { background: var(--primary-soft); color: var(--primary-dark); }
.tag-coral { background: var(--coral-soft); color: #BE123C; }
.tag-mint { background: var(--mint-soft); color: #047857; }
.tag-sun { background: var(--sun-soft); color: #92400E; }
.tag-sky { background: var(--sky-soft); color: #0369A1; }
.kanban-card-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.kanban-card-foot { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: var(--muted); }
.avatars { display: flex; }
.avatar { width: 18px; height: 18px; border-radius: 50%; border: 2px solid white; margin-left: -5px; font-size: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.avatar:first-child { margin-left: 0; }
.avatar.av-1 { background: var(--primary); }
.avatar.av-2 { background: var(--coral); }
.avatar.av-3 { background: var(--mint); }
.avatar.av-4 { background: var(--sun); color: #92400E; }
.float-card { position: absolute; background: white; border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; z-index: 3; animation: float 5s ease-in-out infinite; }
.float-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card-text strong { display: block; font-size: 13px; color: var(--ink); font-weight: 700; }
.float-card-text span { font-size: 11px; color: var(--muted); }
.float-1 { top: -20px; left: -30px; animation-delay: 0s; }
.float-2 { bottom: 30px; right: -30px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.integrations { padding: 60px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.integrations-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
.integrations-marquee { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; justify-content: center; }
.integration-logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--muted); opacity: 0.7; letter-spacing: -0.02em; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.integration-logo:hover { opacity: 1; color: var(--ink); }
.integration-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); display: inline-block; }
.integration-logo:nth-child(2n) .integration-dot { background: var(--primary); }
.integration-logo:nth-child(3n) .integration-dot { background: var(--mint); }
.integration-logo:nth-child(4n) .integration-dot { background: var(--sun); }
.integration-logo:nth-child(5n) .integration-dot { background: var(--sky); }

.section { padding: 100px 0; }
.section-eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; max-width: 720px; }
.section-lead { font-size: 18px; color: var(--ink-soft); max-width: 600px; margin-bottom: 56px; }
.section-head-center { text-align: center; margin: 0 auto 56px; }
.section-head-center .section-title, .section-head-center .section-lead { margin-left: auto; margin-right: auto; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--line); transition: all 0.3s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--card-color); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--icon-bg); color: var(--icon-color); margin-bottom: 18px; }
.feature-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: var(--icon-bg); color: var(--icon-color); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.feature-list { list-style: none; font-size: 13px; color: var(--ink-soft); }
.feature-list li { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.feature-list li::before { content: '•'; color: var(--card-color); font-weight: 700; font-size: 16px; }

.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.showcase:last-child { margin-bottom: 0; }
.showcase-reverse .showcase-text { order: 2; }
.showcase-reverse .showcase-visual { order: 1; }
.showcase-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.showcase-text p { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; }
.showcase-list { list-style: none; margin-bottom: 28px; }
.showcase-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--ink-soft); }
.showcase-list li::before { content: ''; flex-shrink: 0; width: 22px; height: 22px; background: var(--mint-soft); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; margin-top: 2px; }

.invoice-mock { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; transform: rotate(1deg); }
.invoice-header { background: var(--ink); color: white; padding: 24px 28px; display: flex; justify-content: space-between; align-items: flex-start; }
.invoice-header h4 { font-size: 24px; color: white; margin-bottom: 4px; }
.invoice-header .num { font-size: 12px; color: rgba(255,255,255,0.6); font-family: monospace; }
.invoice-header .total { font-size: 22px; font-weight: 700; color: var(--sun); }
.invoice-body { padding: 24px 28px; }
.invoice-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; align-items: center; }
.invoice-row:last-child { border-bottom: none; }
.invoice-row .label { font-weight: 600; color: var(--ink); }
.invoice-row .desc { font-size: 11px; color: var(--muted); }
.invoice-row .qty { color: var(--muted); }
.invoice-row .amt { font-weight: 600; color: var(--ink); }
.invoice-summary { padding: 20px 28px; background: #FAFAFB; display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; border-top: 2px solid var(--ink); }
.invoice-summary .total-amt { color: var(--primary); font-size: 18px; }
.recurring-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--mint-soft); color: #047857; font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 600; margin-left: 8px; }

.hrm-mock { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 28px; position: relative; transform: rotate(-1deg); }
.hrm-mock h4 { font-size: 16px; margin-bottom: 4px; }
.hrm-mock .sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.hrm-row { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hrm-row:last-child { border-bottom: none; }
.hrm-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: white; }
.hrm-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.hrm-role { font-size: 12px; color: var(--muted); }
.hrm-status { font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.status-mint { background: var(--mint-soft); color: #047857; }
.status-sun { background: var(--sun-soft); color: #92400E; }
.status-coral { background: var(--coral-soft); color: #BE123C; }
.status-purple { background: var(--primary-soft); color: var(--primary-dark); }

.stats-section { background: var(--ink); color: white; border-radius: var(--radius-xl); padding: 64px 48px; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 139, 149, 0.45) 0%, transparent 70%); pointer-events: none; }
.stats-section::after { content: ''; position: absolute; bottom: -50%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 142, 83, 0.45) 0%, transparent 70%); pointer-events: none; }
.stats-section h2 { color: white; text-align: center; margin-bottom: 12px; font-size: clamp(28px, 3.5vw, 40px); position: relative; }
.stats-section .stats-lead { text-align: center; color: rgba(255,255,255,0.7); margin-bottom: 48px; font-size: 17px; position: relative; max-width: 640px; margin-left: auto; margin-right: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.stat { text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 8px; background: linear-gradient(135deg, var(--sun) 0%, var(--coral) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); }

.pricing-section { background: var(--cream); }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.billing-toggle { display: inline-flex; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 5px; position: relative; box-shadow: var(--shadow-sm); }
.billing-btn { padding: 10px 24px; border-radius: 999px; border: none; background: transparent; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; position: relative; z-index: 2; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.billing-btn.active { color: white; }
.billing-indicator { position: absolute; top: 5px; bottom: 5px; background: var(--ink); border-radius: 999px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
.save-pill { background: var(--mint); color: white; font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { background: white; border-radius: var(--radius-lg); padding: 32px 26px; border: 1px solid var(--line); position: relative; transition: all 0.3s; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-pop); background: linear-gradient(180deg, #E0F4F5 0%, white 30%); }
.price-card.featured::before { content: attr(data-popular); position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.price-tier { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 4px; }
.price-card.featured .price-tier { color: var(--primary); }
.price-tagline { font-size: 12px; color: var(--muted); margin-bottom: 14px; min-height: 30px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-currency { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--ink); line-height: 1; }
.price-period { font-size: 13px; color: var(--muted); }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-bottom: 18px; display: block; min-height: 18px; }
.price-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.price-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--ink-soft); }
.price-features li::before { content: '✓'; flex-shrink: 0; width: 18px; height: 18px; background: var(--mint-soft); color: var(--mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.btn-block { width: 100%; background: white; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-block:hover { background: var(--ink); color: white; }
.price-card.featured .btn-block { background: var(--primary); color: white; border-color: var(--primary); }
.price-card.featured .btn-block:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.faq-section { background: white; }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 0; text-align: left; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-deep); flex-shrink: 0; position: relative; transition: transform 0.3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon::before { background: white; }
.faq-item.open .faq-icon::after { background: white; transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding-bottom: 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

.final-cta { padding: 80px 0; }
.final-cta-inner { background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%); border-radius: var(--radius-xl); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.final-cta-inner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(252, 211, 77, 0.4) 0%, transparent 70%); pointer-events: none; }
.final-cta-inner::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { color: white; font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; position: relative; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; position: relative; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-primary { background: white; color: var(--primary); }
.btn-cta-primary:hover { background: var(--ink); color: white; transform: translateY(-1px); }
.btn-cta-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; margin-bottom: 20px; }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact strong { color: white; display: block; margin-bottom: 4px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }

@media (max-width: 968px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .showcase-reverse { grid-template-columns: 1fr; gap: 48px; }
  .showcase-reverse .showcase-text { order: 1; }
  .showcase-reverse .showcase-visual { order: 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-section, .final-cta-inner { padding: 48px 28px; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .float-card { display: none; }
  .container { padding: 0 18px; }
}
