/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #03465a;
    --secondary-color: #03abcd;
    --accent-color: #03abcd;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-light: #eef3f6;
    --bg-white: #ffffff;
    --surface: #ffffff;
    --surface-muted: #f7fafc;
    --border-color: #e3edf3;
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 30px 80px rgba(8, 29, 44, 0.18);
    --shadow-soft: 0 18px 45px rgba(8, 29, 44, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: radial-gradient(circle at top, rgba(3, 171, 205, 0.12), transparent 45%),
        radial-gradient(circle at 20% 30%, rgba(3, 70, 90, 0.08), transparent 40%),
        linear-gradient(180deg, #f9fbfd 0%, #eef3f6 60%, #e8f0f5 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header
   =================================== */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(3, 70, 90, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    min-height: 84px;
}

.header-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    max-width: 100%;
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
    margin: -0.25rem auto 0.85rem;
    padding: 0.35rem 0.9rem;
    background: rgba(3, 171, 205, 0.08);
    border: 1px solid rgba(3, 171, 205, 0.2);
    border-radius: 999px;
}

.header-note i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background: rgba(3, 171, 205, 0.18);
    font-size: 0.8rem;
}

.hero-note {
    margin: 1.25rem 0 0;
    justify-content: flex-start;
}

/* ===================================
   Subscription Cancel Modal
   =================================== */

.ts-cancel-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ts-cancel-modal.is-open {
    display: flex;
}

.ts-cancel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 29, 44, 0.6);
}

.ts-cancel-card {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100% - 2rem));
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(8, 29, 44, 0.25);
    text-align: left;
}

.ts-cancel-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.ts-cancel-card p {
    margin: 0 0 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.ts-cancel-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-medium);
    cursor: pointer;
}

.ts-cancel-cta {
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.ts-modal-open {
    overflow: hidden;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.logo-img {
    width: auto;
    height: 65px;
    max-width: 320px;
    object-fit: contain;
}

.logo-text {
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    color: var(--text-dark);
    overflow: hidden;
    padding: 4rem 0 5rem;
}

.hero .container {
    max-width: 1320px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(3, 171, 205, 0.18), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(3, 70, 90, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 250, 0.9));
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(3, 171, 205, 0.2), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(3, 70, 90, 0.12), transparent 60%);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(120deg, rgba(3, 70, 90, 0.04), rgba(3, 70, 90, 0.04) 1px, transparent 1px, transparent 120px);
    z-index: 0;
}

.hero-shell {
    position: relative;
    background: var(--surface);
    border-radius: 28px;
    padding: 3rem 3.5rem;
    box-shadow: 0 20px 60px rgba(8, 29, 44, 0.12);
    border: 1px solid rgba(3, 70, 90, 0.06);
    overflow: hidden;
}

.hero-shell::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(3, 171, 205, 0.18), transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 620px;
    align-self: start;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(3, 171, 205, 0.12), rgba(3, 70, 90, 0.08));
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(3, 171, 205, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    line-height: 1.12;
    letter-spacing: -0.025em;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    color: var(--text-medium);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Hero Stats Bar - Full Width Below Hero */
.hero-stats-bar {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 250, 0.9));
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 60px rgba(8, 29, 44, 0.12);
    border: 1px solid rgba(3, 171, 205, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-stats-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--accent-color));
    animation: gradient-shift 3s ease infinite;
}


.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(3, 70, 90, 0.06);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.1s, 0.1s;
}
.stat-item:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.2s, 0.4s;
}
.stat-item:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.3s, 0.7s;
}
.stat-item:nth-child(4) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.4s, 1s;
}
.stat-item:nth-child(5) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.5s, 1.3s;
}
.stat-item:nth-child(6) {
    animation: fadeInUp 0.6s ease forwards, float-gentle 3s ease-in-out infinite;
    animation-delay: 0.6s, 1.6s;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 0 0 999px 999px;
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(3, 171, 205, 0.15);
    border-color: rgba(3, 171, 205, 0.25);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    position: relative;
    z-index: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    padding: 1rem 0;
    align-self: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 171, 205, 0.15), transparent 70%);
    filter: blur(2px);
    z-index: 0;
}

.hero-visual::after {
    content: "";
    position: absolute;
    bottom: 20px;
    width: min(80%, 320px);
    height: 60px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(3, 70, 90, 0.18), transparent 70%);
    z-index: 1;
}

.hero-image {
    position: relative;
    width: min(100%, 400px);
    max-height: 440px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(3, 70, 90, 0.18));
    animation: float 7s ease-in-out infinite;
    z-index: 2;
}

.hero-visual-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}


.visual-orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at top, rgba(3, 171, 205, 0.35), rgba(3, 70, 90, 0.15));
    animation: float 8s ease-in-out infinite;
}

.visual-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(3, 70, 90, 0.2);
    animation: spin-slow 20s linear infinite;
}

.visual-mini {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.15rem;
}

.visual-mini-top {
    top: 20px;
    right: 10px;
}

.visual-mini-bottom {
    bottom: 30px;
    left: 0;
}

.mini-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.mini-value {
    font-weight: 700;
    color: var(--primary-color);
}

.visual-card {
    background: var(--bg-white);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
    z-index: 2;
}

.visual-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-light);
    font-weight: 600;
}

.plan-badge {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 10px 18px rgba(3, 70, 90, 0.16));
}

.visual-tag {
    color: var(--primary-color);
    font-weight: 700;
}

.visual-year {
    background: rgba(3, 171, 205, 0.12);
    color: var(--primary-color);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-weight: 700;
}

.visual-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 12px 25px rgba(3, 70, 90, 0.25);
    font-size: 1.4rem;
}

.visual-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.visual-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.visual-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.progress-bar {
    position: relative;
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: #e7eef4;
    overflow: hidden;
}

.progress-bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 72%;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--secondary-color), var(--primary-color));
    animation: shimmer 3s ease-in-out infinite;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.975rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #0295b5);
    color: var(--bg-white);
    box-shadow: 0 12px 28px rgba(3, 171, 205, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #027a9e, var(--primary-color));
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(3, 171, 205, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(3, 171, 205, 0.6);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(3, 171, 205, 0.12);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    background: var(--bg-white);
    border-color: rgba(3, 70, 90, 0.2);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-ghost:hover {
    background: rgba(3, 171, 205, 0.04);
    border-color: rgba(3, 171, 205, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.btn-large {
    padding: 1.05rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* ===================================
   Sections
   =================================== */

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ===================================
   Problem Section
   =================================== */

.problem-section {
    padding: 5.5rem 0;
    background: transparent;
}

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

.problem-card {
    background: var(--surface);
    padding: 2.5rem 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(3, 70, 90, 0.06);
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    text-align: left;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 29, 44, 0.14);
}

.problem-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 1.5rem;
    background: rgba(3, 171, 205, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.problem-icon i {
    font-size: 2rem;
}

.icon-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   Pricing Section
   =================================== */

.pricing-section {
    padding: 5.5rem 0;
    background: var(--surface);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 3rem;
    background: var(--surface-muted);
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-medium);
}

.save-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d9e5ec;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--secondary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

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

.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(3, 70, 90, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: #03465A;
    opacity: 0.35;
    border-radius: 20px 20px 0 0;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 29, 44, 0.14);
}

.pricing-card-featured {
    border-color: rgba(16, 185, 129, 0.6);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 1) 45%);
    box-shadow: 0 24px 60px rgba(16, 185, 129, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
}

.plan-header {
    margin-bottom: 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-name {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem -2rem;
    gap: 0.5rem;
    background: var(--primary-color);
    padding: 1.25rem 1.5rem;
    position: relative;
    border-radius: 0;
}

.pricing-card:nth-child(1) .plan-price {
    background: linear-gradient(135deg, #03465a, #025066);
}

.pricing-card:nth-child(2) .plan-price {
    background: linear-gradient(135deg, #03abcd, #0295b5);
}

.pricing-card:nth-child(3) .plan-price {
    background: linear-gradient(135deg, #03465a, #03abcd);
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--bg-white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.plan-best-for {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 400;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    max-width: 90%;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(3, 70, 90, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.plan-features i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-card .btn:hover {
    color: var(--bg-white) !important;
}

.pricing-card .btn.plan-btn-essential:hover {
    background: rgba(3, 171, 205, 0.12);
    border-color: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   Optional Add-Ons Section
   =================================== */

.addons-section {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(3, 171, 205, 0.12), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(3, 70, 90, 0.1), transparent 45%),
        linear-gradient(180deg, #f7fafc 0%, #eef5f8 100%);
}

.addons-header {
    text-align: center;
    margin-bottom: 3rem;
}

.addons-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(3, 171, 205, 0.16);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.addon-card {
    background: var(--surface);
    padding: 1.75rem 1.6rem;
    border-radius: 18px;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.addon-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addon-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(3, 171, 205, 0.15);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.addon-pill {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(3, 70, 90, 0.08);
    border: 1px solid rgba(3, 70, 90, 0.15);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.addon-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.addon-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.addon-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(3, 70, 90, 0.12);
    gap: 1rem;
}

.addon-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.addon-price .price-currency {
    font-size: 1rem;
    color: var(--text-light);
}

.addon-price .price-amount {
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1;
}

.addon-price .price-period {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.addon-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: right;
}

.addons-footer {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-medium);
}

.addons-footer p {
    margin: 0;
}

/* Addon Card with Images */
.addon-card {
    padding: 0;
    overflow: hidden;
}

.addon-card-body {
    padding: 1.5rem 1.6rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.addon-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.addon-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
}

.addon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.addon-image-link:hover .addon-image img {
    transform: scale(1.08);
}

.addon-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 70, 90, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addon-image-overlay i {
    color: #fff;
    font-size: 1.8rem;
}

.addon-image-link:hover .addon-image-overlay {
    opacity: 1;
}

/* Addon Lightbox */
.addon-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-lightbox[hidden] {
    display: none;
}

.addon-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 29, 44, 0.85);
    cursor: pointer;
}

.addon-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.addon-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.addon-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.addon-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.addon-lightbox-title {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: 5.5rem 0;
    background: var(--surface-muted);
}

.features-table-wrapper {
    overflow-x: auto;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    border: 1px solid rgba(3, 70, 90, 0.06);
    margin-top: 3rem;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.features-table thead {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

.features-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.features-table th:first-child {
    border-radius: 12px 0 0 0;
}

.features-table th:last-child {
    border-radius: 0 12px 0 0;
}

.features-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.features-table tbody tr:hover {
    background: rgba(3, 171, 205, 0.05);
}

.features-table td {
    padding: 1.25rem;
    text-align: left;
}

.features-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.features-table td:not(:first-child) {
    text-align: center;
}

.features-table .fa-check-circle {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.features-table .fa-times-circle {
    color: #ccc;
    font-size: 1.5rem;
}

/* Mobile Feature Cards */
.features-cards {
    display: none;
}

.feature-mobile-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    border: 1px solid rgba(3, 70, 90, 0.06);
}

.feature-mobile-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.includes-text {
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-mobile-card ul {
    list-style: none;
}

.feature-mobile-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-mobile-card li:last-child {
    border-bottom: none;
}

.feature-mobile-card i {
    color: var(--secondary-color);
}

/* ===================================
   Value Section - Advanced Design
   =================================== */

.value-section {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, rgba(3, 171, 205, 0.02) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(3, 171, 205, 0.08), transparent 70%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

.value-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Base Card Styling */
.value-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 0;
    text-align: left;
    box-shadow: 0 20px 60px rgba(8, 29, 44, 0.12);
    border: 1px solid rgba(3, 70, 90, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(3, 171, 205, 0.2);
    border-color: rgba(3, 171, 205, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-inner {
    padding: 2.5rem 2rem;
}

/* Primary Card - Featured Design */
.value-card-primary {
    background: linear-gradient(135deg, #024b5f 0%, #03657a 50%, #038ca8 100%);
    color: var(--bg-white);
    border: 2px solid rgba(3, 171, 205, 0.3);
}

.value-card-primary::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    opacity: 1;
}

.value-card-primary .value-card-inner {
    padding: 3rem 2.5rem;
}

/* Value Header */
.value-header {
    margin-bottom: 2rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 1.25rem 0;
    background: linear-gradient(135deg, rgba(3, 171, 205, 0.2), rgba(3, 70, 90, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(3, 171, 205, 0.25);
    box-shadow: 0 8px 25px rgba(3, 171, 205, 0.25);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(3, 171, 205, 0.35);
}

.value-card-primary .value-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.value-icon .icon-emoji {
    font-size: 2.25rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.value-header h3 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.value-card-primary .value-header h3 {
    color: var(--bg-white);
}

.value-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.value-card-primary .value-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.value-panel {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: var(--surface-muted);
    border: 1px solid rgba(3, 70, 90, 0.08);
    display: grid;
    gap: 0.75rem;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.panel-label {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 700;
}

.panel-value {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

.value-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.value-tags span {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(3, 171, 205, 0.12);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.value-foot {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(3, 70, 90, 0.16);
    display: grid;
    gap: 0.6rem;
}

.foot-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

.foot-item i {
    color: var(--secondary-color);
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    align-items: flex-start;
    text-align: left;
}

.cost-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 1;
    color: var(--bg-white);
}

.cost-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cost-vs {
    font-weight: 700;
    font-size: 1.5rem;
    opacity: 1;
    color: var(--bg-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Trust Section
   =================================== */

.trust-section {
    padding: 5.5rem 0;
    background: var(--surface-muted);
}

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

.trust-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    border: 1px solid rgba(3, 70, 90, 0.06);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 29, 44, 0.14);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.trust-icon i {
    font-size: 2rem;
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 5.5rem 0;
    background: var(--surface);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.faq-image-container {
    position: sticky;
    top: 100px;
}

.faq-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(8, 29, 44, 0.15);
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    background: var(--surface-muted);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(3, 70, 90, 0.06);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, #03465a, #03abcd);
    color: #ffffff;
}

.faq-question:hover i {
    color: #ffffff;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--secondary-color);
}

.faq-question[aria-expanded="false"] {
    background: none;
    color: var(--primary-color);
}

.faq-question[aria-expanded="false"] i {
    color: var(--secondary-color);
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #03465a, #03abcd);
    color: #ffffff;
    border-radius: 14px 14px 0 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===================================
   Service Area Section
   =================================== */

.service-area-section {
    padding: 3.5rem 0 5rem;
    background: var(--surface-muted);
}

.service-area-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-area-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    background: rgba(3, 171, 205, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.service-area-header .section-title {
    margin-bottom: 0.5rem;
}

.service-area-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.service-area-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 2.25rem;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: 0 18px 40px rgba(8, 29, 44, 0.1);
}

.service-area-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(3, 70, 90, 0.08);
    background: rgba(3, 171, 205, 0.08);
    min-height: 220px;
}

.service-area-embed {
    width: 100%;
    height: 100%;
    min-height: 240px;
    border: 0;
    display: block;
}

.service-area-radius {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.35rem 0.75rem;
    background: rgba(3, 70, 90, 0.85);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-area-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-area-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.service-area-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.service-area-details p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-area-link i {
    color: var(--secondary-color);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0.7;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.cta-lead {
    max-width: 520px;
}

.cta-benefits {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
}

.cta-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(3, 70, 90, 0.25);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.cta-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(3, 70, 90, 0.32);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 18px rgba(3, 70, 90, 0.25);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
}

.benefit-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--bg-white);
}

.benefit-text p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.88);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.cta-stats .stat-item {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 28px rgba(3, 70, 90, 0.25);
    padding: 1.1rem 0.9rem;
}

.cta-stats .stat-item strong {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.cta-stats .stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
}

.cta-assurance {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.cta-assurance i {
    color: var(--accent-color);
}

.cta-button {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 32px rgba(2, 40, 54, 0.35);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Wave Design */
.footer {
    background: #03586f;
    color: var(--bg-white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr;
    gap: 2.5rem;
    margin-bottom: 2.75rem;
}

.footer-section {
    position: relative;
    padding: 2rem 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(2, 40, 54, 0.35);
    backdrop-filter: blur(10px);
}

.footer-about {
    padding: 2.4rem 2.4rem;
}

.footer-about h3 {
    color: var(--bg-white);
    font-size: 1.65rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-logo {
    width: 110px;
    height: 110px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 32px rgba(2, 40, 54, 0.35);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-tagline {
    font-size: 0.98rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 1rem;
    position: relative;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    background: #ffffff;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-contact i {
    color: #ffffff;
    font-size: 1.05rem;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(2, 40, 54, 0.3);
}

.social-links a i {
    color: #ffffff !important;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.3);
}

.social-links a:hover i {
    color: #ffffff !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-credits {
    font-size: 0.8rem;
    opacity: 0.75;
}

/* ===================================
   WhatsApp Button
   =================================== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--bg-white);
}

/* ===================================
   Animations
   =================================== */

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

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

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-20%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(20%);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(3, 171, 205, 0.3);
    }
    50% {
        text-shadow: 0 0 12px rgba(3, 171, 205, 0.5);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .hero-shell {
        padding: 2.5rem 2.75rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-image {
        width: min(100%, 340px);
        max-height: 380px;
    }

    .hero-trust-right {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-table-wrapper {
        display: none;
    }

    .features-cards {
        display: block;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        display: contents;
    }

    .hero-pill {
        order: 1;
        justify-self: start;
        align-self: start;
        width: fit-content;
    }

    .hero-title {
        order: 2;
    }

    .hero-subtitle {
        order: 3;
    }

    .hero-visual {
        order: 4;
    }

    .hero-actions {
        order: 5;
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .hero-note {
        order: 6;
        margin-top: 1rem;
        justify-self: start;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        padding: 0;
    }

    .addon-card-body {
        padding: 1.25rem 1.4rem 1.5rem;
    }

    .addon-image {
        height: 200px;
    }

    .addon-lightbox-close {
        top: -40px;
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-image-container {
        position: relative;
        top: 0;
        order: -1;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-image-container {
        order: -1;
    }

    .cta-benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .cta-assurance {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-wave {
        height: 80px;
    }

    .footer .container {
        padding-top: 4rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section {
        text-align: center;
        padding: 1.75rem;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .logo-img {
        height: 56px;
        max-width: 260px;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.18;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-shell {
        padding: 2rem 2.25rem;
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.75rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 0.85rem;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-image {
        width: min(100%, 300px);
        max-height: 340px;
    }



    .visual-mini {
        display: none;
    }

    .problem-grid,
    .value-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .toggle-label {
        font-size: 0.95rem;
    }

    .save-badge {
        margin-left: 0;
        font-size: 0.8rem;
        padding: 0.2rem 0.65rem;
    }

    .pricing-grid {
        gap: 1.75rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
    }

    .plan-name {
        font-size: 1.6rem;
    }

    .plan-features li {
        font-size: 0.95rem;
        padding: 0.65rem 0;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }

    .section-title {
        font-size: 1.95rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .logo-img {
        height: 48px;
        max-width: 220px;
    }

    .header-note {
        border-radius: 10px;
    }

    .header-actions .btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-shell {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
        gap: 1rem;
        padding: 1.5rem 1.25rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .hero-image {
        width: min(100%, 260px);
        max-height: 300px;
    }

    .hero-visual {
        min-height: 320px;
        padding: 0.5rem 0 1.5rem;
    }

    .hero-trust-right {
        margin-top: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .pricing-toggle {
        padding: 0.6rem 0.85rem;
        gap: 0.6rem;
    }

    .toggle-label {
        font-size: 0.875rem;
    }

    .save-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .toggle-switch {
        width: 52px;
        height: 26px;
    }

    .toggle-slider:before {
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
    }

    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(26px);
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .plan-best-for {
        font-size: 0.875rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        gap: 0.6rem;
    }

    .plan-features i {
        font-size: 1rem;
    }

    .pricing-card .btn-large {
        padding: 0.95rem 1.75rem;
        font-size: 0.95rem;
    }

    .addon-price .price-amount {
        font-size: 1.4rem;
    }

    .featured-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.25rem;
    }

    .problem-icon,
    .value-icon,
    .trust-icon {
        width: 60px;
        height: 60px;
    }

    .problem-icon i,
    .value-icon i,
    .trust-icon i {
        font-size: 1.75rem;
    }

    .footer-section {
        padding: 1.5rem;
    }

    .footer-logo {
        width: 96px;
        height: 96px;
    }

    .footer-bottom {
        gap: 0.5rem;
    }
}

/* ===================================
   Accessibility
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===================================
   Checkout Empty Cart Notice
   =================================== */

.ts-checkout-notice {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid rgba(3, 70, 90, 0.15);
    border-left: 6px solid var(--secondary-color);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 12px 28px rgba(8, 29, 44, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    max-width: 520px;
    width: calc(100% - 32px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ts-checkout-notice.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ts-notice-close {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-medium);
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(3, 171, 205, 0.14), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(3, 70, 90, 0.12), transparent 50%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-shell {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 1rem 1.5rem;
    margin: 0 3.5rem;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: 0 16px 32px rgba(8, 29, 44, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(8, 29, 44, 0.18);
}

.gallery-image {
    background: #f0f4f7;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(3, 70, 90, 0.1);
}

.gallery-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.03);
}

.gallery-caption {
    text-align: center;
    margin-top: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
}

.gallery-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(3, 70, 90, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    position: absolute;
    z-index: 2;
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-nav:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 23, 33, 0.78);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 880px;
    width: 90%;
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 30px 70px rgba(5, 23, 33, 0.4);
    z-index: 1;
}

.gallery-lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.gallery-lightbox-content img.is-zoomed {
    transform: scale(1.4);
    cursor: zoom-out;
}

.gallery-lightbox-title {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.gallery-lightbox-hint {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 0.35rem;
}

.gallery-lightbox-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(3, 70, 90, 0.12);
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
}

body.gallery-open {
    overflow: hidden;
}

body.addon-lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .gallery-shell {
        gap: 0;
    }

    .gallery-track {
        margin: 0;
        padding: 0.5rem 0 1.5rem;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-card {
        flex: 0 0 75%;
    }
}

/* ===================================
   Elite Value Stack Section
   =================================== */

.elite-value-section {
    padding: 5rem 0;
    background: var(--surface);
}

.elite-value-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.elite-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.elite-value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: 0 14px 30px rgba(8, 29, 44, 0.08);
}

.elite-value-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(3, 171, 205, 0.18);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.elite-value-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.elite-value-content ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Elite Value Comparison Table
   =================================== */

.elite-comparison-section {
    padding: 4.5rem 0;
    background: var(--surface-muted);
}

.elite-comparison-table {
    background: var(--surface);
    border-radius: 22px;
    padding: 2.5rem;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: 0 20px 45px rgba(8, 29, 44, 0.1);
    text-align: center;
}

.elite-comparison-table h3 {
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.elite-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 1.5rem;
}

.elite-comparison-table th,
.elite-comparison-table td {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(3, 70, 90, 0.08);
}

.elite-comparison-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--text-medium);
}

.elite-comparison-table tbody tr:nth-child(odd) {
    background: rgba(3, 70, 90, 0.04);
}

.elite-comparison-table .total-row {
    background: rgba(3, 171, 205, 0.18);
}

.elite-comparison-table .price-row {
    background: rgba(3, 171, 205, 0.08);
}

.elite-comparison-table .price-row .highlight {
    color: var(--secondary-color);
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(3, 171, 205, 0.3);
}

.addon {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 900px) {
    .elite-value-grid {
        grid-template-columns: 1fr;
    }

    .elite-comparison-table {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   Value Snapshot Section
   =================================== */

.value-snapshot {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(3, 171, 205, 0.12), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(3, 70, 90, 0.12), transparent 45%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.value-snapshot-header {
    text-align: center;
    margin-bottom: 3rem;
}

.value-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(3, 171, 205, 0.16);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.value-snapshot .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 620px;
    margin: 0.75rem auto 0;
}

.value-snapshot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
}

.value-snapshot-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: center;
}

.value-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.metric-tile {
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(3, 70, 90, 0.08);
    box-shadow: 0 10px 24px rgba(8, 29, 44, 0.08);
}

.metric-emphasis {
    background: linear-gradient(135deg, rgba(3, 171, 205, 0.18), rgba(3, 70, 90, 0.08));
    border-color: rgba(3, 171, 205, 0.35);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 0.35rem;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.value-note {
    margin: 0;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.value-intro-text {
    margin-bottom: 1.5rem;
}

.value-intro-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.value-intro-text p:last-child {
    margin-bottom: 0;
}

.value-snapshot-board {
    position: relative;
    background: var(--surface);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(3, 70, 90, 0.1);
    box-shadow: 0 24px 60px rgba(8, 29, 44, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-snapshot-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(3, 171, 205, 0.12), rgba(3, 70, 90, 0.02) 60%, transparent 70%);
    pointer-events: none;
}

.value-feature {
    position: relative;
    padding-left: 2.5rem;
}

.value-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 6px;
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(3, 171, 205, 0.15);
}

.value-feature h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
}

.value-feature p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-feature ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.value-feature ul li {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.value-feature ul li:last-child {
    margin-bottom: 0;
}

/* ===================================
   General Value Stack Section
   =================================== */

.general-value-section {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.general-value-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.general-value-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: auto;
    order: 2;
}

.general-value-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(8, 29, 44, 0.2);
    object-fit: contain;
}

.general-value-stack {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: none;
    width: 100%;
    margin: 0;
    justify-self: stretch;
    order: 1;
    box-shadow: 0 12px 32px rgba(8, 29, 44, 0.08);
    border: 1px solid rgba(3, 70, 90, 0.06);
}

.general-value-stack h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.value-grid-simple {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--surface-muted);
    border-radius: 10px;
    border: 1px solid rgba(3, 70, 90, 0.06);
}

.value-line .service {
    font-weight: 500;
    color: var(--text-dark);
}

.value-line .amount {
    font-weight: 600;
    color: var(--secondary-color);
}

.value-total {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--secondary-color);
}

.value-total p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.value-total strong {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ===================================
   Hero Stats Footnotes
   =================================== */

.hero-stats-footnotes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-footnotes .footnote {
    font-size: 0.75rem;
    color: #5a6a7a;
    margin: 0;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-stats-footnotes .footnote::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-stats-footnotes {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .hero-stats-footnotes .footnote {
        font-size: 0.7rem;
    }
}

/* ===================================
   FAQ Answer Enhancements
   =================================== */

.faq-answer h4 {
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-answer ul {
    padding: 0 1.5rem 0.75rem 2.5rem;
    margin: 0;
}

.faq-answer ul li {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.faq-answer .note {
    padding: 0.75rem 1.5rem 1.25rem;
    font-size: 0.9rem;
}

.faq-answer em {
    color: #c53030;
    font-style: italic;
}

/* ===================================
   Checkout Add-ons Enhancements
   =================================== */

.ts-addon-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ts-addon-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.ts-addon-note {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.elite-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ts-elite-additional-properties {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
}

.ts-addon-item.elite-special {
    background: linear-gradient(135deg, rgba(3, 171, 205, 0.08), rgba(3, 70, 90, 0.05));
    border-color: var(--secondary-color);
}

.ts-addon-item.elite-special:hover {
    background: linear-gradient(135deg, rgba(3, 171, 205, 0.12), rgba(3, 70, 90, 0.08));
}

/* ===================================
   Responsive - Value Snapshot
   =================================== */

@media (max-width: 1100px) {
    .value-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .general-value-layout {
        grid-template-columns: 1fr;
    }

    .general-value-visual {
        height: auto;
        order: 1;
    }

    .general-value-image {
        height: auto;
    }

    .general-value-stack {
        justify-self: stretch;
        order: 2;
    }

    .service-area-card {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .value-snapshot {
        padding: 4.5rem 0;
    }

    .value-snapshot-header {
        text-align: left;
    }

    .value-snapshot .section-subtitle {
        margin-left: 0;
    }

    .value-metrics {
        grid-template-columns: 1fr;
    }

    .value-snapshot-board {
        padding: 2rem;
    }

    .general-value-visual {
        min-height: 320px;
    }

    .general-value-stack {
        padding: 1.5rem;
    }

    .value-line {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .service-area-section {
        padding: 3rem 0 4rem;
    }

    .service-area-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .value-snapshot-board {
        padding: 1.75rem;
    }

    .metric-value {
        font-size: 1.35rem;
    }
}
