/* ================================================
   1Health Pathway - Modern Minimalist Style
   Landing Page Styles
   ================================================ */

:root {
    --primary-color: #6a4c93;
    --primary-dark: #4a3570;
    --primary-light: #b497d6;
    --secondary-color: #d6cadd;
    --accent-color: #f3e8ff;
    --text-primary: #240046;
    --text-secondary: #6c5b7b;
    --text-light: #9b8fb3;
    --bg-white: #ffffff;
    --bg-light: #faf5ff;
    --bg-gray: #f1f0f5;
    --success-color: #9b5de5;
    --warning-color: #f7b267;
    --danger-color: #e63946;
    --shadow-sm: 0 1px 3px rgba(106, 76, 147, 0.08);
    --shadow-md: 0 4px 12px rgba(106, 76, 147, 0.1);
    --shadow-lg: 0 10px 40px rgba(106, 76, 147, 0.12);
    --shadow-glow: 0 0 30px rgba(106, 76, 147, 0.2);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

/*

:root {
    --primary-color: #008080;
    --primary-dark: #005f5f;
    --primary-light: #00b3b3;
    --secondary-color: #20c997;
    --accent-color: #ff6f61;
    --text-primary: #1b263b;
    --text-secondary: #4a5568;
    --text-light: #7a8a99;
    --bg-white: #ffffff;
    --bg-light: #f0fdfa;
    --bg-gray: #e6f7f5;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --shadow-sm: 0 1px 3px rgba(0, 128, 128, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 128, 128, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 128, 128, 0.12);
    --shadow-glow: 0 0 30px rgba(0, 128, 128, 0.2);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--bg-gray);
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: var(--border-radius-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.accent-text {
    color: var(--primary-color);
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-gray);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.path-line {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.path-line:nth-child(2) {
    width: 18px;
}

.path-line:nth-child(3) {
    width: 12px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-white);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    opacity: 0.03;
    pointer-events: none;
}

.grid-cell {
    border: 1px solid var(--text-primary);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 800px;
    height: 800px;
    background: var(--primary-color);
    top: -400px;
    right: -200px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    bottom: -300px;
    left: -200px;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-gray);
}

.metric {
    text-align: left;
}

.metric-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--bg-gray);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-container {
    width: 100%;
    max-width: 500px;
}

.main-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.central-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.figure-ring {
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.figure-inner {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.figure-inner i {
    font-size: 40px;
    color: white;
}

.illustration-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-normal);
}

.illustration-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.illustration-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-card .card-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.illustration-card .card-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.illustration-card .card-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    top: 20%;
    right: 5%;
    animation: float 5s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 15%;
    left: 15%;
    animation: float 4.5s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 12px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.stack-layer {
    position: absolute;
    border-radius: var(--border-radius-lg);
}

.stack-layer.layer-1 {
    inset: 0;
    background: var(--primary-color);
    opacity: 0.2;
}

.stack-layer.layer-2 {
    inset: 20px;
    background: var(--primary-color);
    opacity: 0.4;
}

.stack-layer.layer-3 {
    inset: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.stack-layer.layer-3 i {
    font-size: 60px;
    color: var(--primary-color);
}

.experience-pill {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.pill-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.pill-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.content-title {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.content-lead {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 16px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    color: white;
    font-size: 12px;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: 120px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.service-card:hover .card-glow {
    transform: scale(2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.service-card:hover .card-icon {
    background: var(--primary-color);
}

.card-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.service-card:hover .card-icon i {
    color: white;
}

.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-gray);
    line-height: 1;
}

.service-card:hover .card-number {
    color: rgba(37, 99, 235, 0.1);
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.card-link i {
    transition: transform var(--transition-fast);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-choose {
    padding: 120px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-gray);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ================================================
   PLANS SECTION
   ================================================ */
.plans {
    padding: 120px 0;
    background: var(--bg-white);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--warning-color);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--border-radius);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
}

.plan-price .amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    align-self: flex-end;
    margin-bottom: 10px;
    opacity: 0.8;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.plan-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-features li i {
    color: var(--primary-color);
}

.plan-card.featured .plan-features li i {
    color: #93c5fd;
}

.plan-features li.disabled {
    color: var(--text-light);
}

.plan-features li.disabled i {
    color: var(--text-light);
}

.plan-card.featured .btn-primary {
    background: white;
    color: var(--primary-color);
}

.plan-card.featured .btn-outline {
    border-color: white;
    color: white;
}

.plan-card.featured .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.quote-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--primary-color);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.stars i {
    color: var(--warning-color);
    font-size: 12px;
}

/* ================================================
   APPOINTMENT SECTION
   ================================================ */
.appointment {
    padding: 120px 0;
    background: var(--primary-color);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-info {
    color: white;
}

.appointment-info .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.appointment-info .section-title {
    color: white;
}

.appointment-info>p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 24px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    opacity: 0.8;
}

.appointment-form-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.appointment-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.appointment-form .form-header h3 {
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--bg-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 36px;
    color: white;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-gray);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contact-note {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-mark .path-line {
    background: white;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 16px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter-form .input-group {
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: white;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.newsletter-success {
    text-align: center;
    padding: 20px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius);
}

.newsletter-success i {
    font-size: 40px;
    color: var(--success-color);
    margin-bottom: 12px;
}

.newsletter-success p {
    color: var(--success-color);
    font-weight: 600;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ================================================
   MODALS
   ================================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--bg-gray);
}

.modal-header h2 {
    font-size: 20px;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    border: none;
    background: var(--bg-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
}

.modal-body {
    padding: 30px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 17px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
    }

    .nav.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .metric-divider {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form-container {
        padding: 30px 20px;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .illustration-card {
        display: none;
    }

    .plan-price .amount {
        font-size: 44px;
    }
}