/* ============================================
   CARIBBEAN PALETTE & DESIGN SYSTEM
   Primary: #0E7C7B (teal ocean)
   Secondary: #F4A261 (warm sand/sunset)
   Accent: #E76F51 (coral)
   Dark: #1B2A4A (deep navy)
   Light: #FFF8F0 (warm white)
   ============================================ */

:root {
    --primary: #0E7C7B;
    --primary-dark: #095E5D;
    --primary-light: #12A09F;
    --secondary: #F4A261;
    --accent: #E76F51;
    --dark: #1B2A4A;
    --dark-light: #2A3F6A;
    --text: #2D3748;
    --text-light: #64748B;
    --light: #FFF8F0;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #22C55E;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 24px rgba(27, 42, 74, 0.1);
    --shadow-lg: 0 16px 48px rgba(27, 42, 74, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-sm svg { width: 18px; height: 18px; }
.icon-lg svg { width: 32px; height: 32px; }
.icon-xl svg { width: 40px; height: 40px; }

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-box-primary {
    background: rgba(14, 124, 123, 0.1);
    color: var(--primary);
}

.icon-box-secondary {
    background: rgba(244, 162, 97, 0.12);
    color: var(--secondary);
}

.icon-box-accent {
    background: rgba(231, 111, 81, 0.1);
    color: var(--accent);
}

.icon-box-dark {
    background: rgba(27, 42, 74, 0.08);
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 124, 123, 0.25);
}

.btn-secondary {
    background: var(--light);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 130px 0 90px;
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 124, 123, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.85;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 14px;
    opacity: 0.7;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

/* Profile Photo */
.profile-photo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.profile-photo-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5px;
    margin: 0 auto 24px;
    position: relative;
}

.profile-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.profile-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.profile-photo-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: rgba(255,255,255,0.3);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-photo-placeholder span {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.6;
}

.profile-location {
    text-align: center;
    font-size: 15px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.profile-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Sections */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

/* Services */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

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

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Offers Preview */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

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

.offer-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.offer-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.offer-price {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.offer-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.offer-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.offer-features li {
    padding: 7px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--success);
    stroke-width: 2.5;
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.popular-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Benefits */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.benefits-list {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA */
.cta {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 20px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 16px;
}

.footer-section p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Page Hero */
.page-hero {
    padding: 130px 0 64px;
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   OFFERS DETAILED PAGE
   ============================================ */
.offers-detailed {
    background: var(--light);
}

.offers-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.offer-detailed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.offer-detailed-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.offer-detailed-card .offer-header {
    padding: 32px 28px;
    text-align: center;
    background: var(--light);
    position: relative;
}

.offer-detailed-card.featured .offer-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.offer-detailed-card.featured .offer-header .offer-price {
    color: var(--white);
}

.offer-detailed-card.featured .offer-header .offer-duration {
    color: rgba(255,255,255,0.7);
}

.offer-detailed-card .offer-content {
    padding: 28px;
}

.offer-detailed-card .offer-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.offer-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.offer-detailed-card .offer-features h4,
.offer-ideal h4,
.offer-process h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-detailed-card .offer-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.offer-detailed-card .offer-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-detailed-card .offer-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--success);
    stroke-width: 2.5;
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offer-ideal {
    margin-bottom: 20px;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
}

.offer-ideal p {
    font-size: 14px;
    color: var(--text-light);
}

.offer-process {
    margin-bottom: 24px;
}

.offer-process ol {
    list-style: none;
    counter-reset: step;
}

.offer-process ol li {
    counter-increment: step;
    padding: 4px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-process ol li::before {
    content: counter(step);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
}

.comparison-header {
    margin-bottom: 8px;
}

.comparison-col {
    text-align: center;
    padding: 16px 12px;
    font-size: 14px;
}

.comparison-col.featured {
    background: rgba(14, 124, 123, 0.05);
    border-radius: var(--radius);
}

.comparison-badge {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.comparison-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-top: 4px;
}

.comparison-row {
    border-bottom: 1px solid var(--border);
}

.feature-name {
    padding: 14px 12px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

/* ============================================
   METHOD PAGE
   ============================================ */
.method-intro {
    background: var(--white);
}

.method-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.method-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.method-intro-text > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.method-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.method-value h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.method-value p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.method-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4px;
    margin-bottom: 20px;
}

.method-profile-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.method-profile-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-profile-placeholder {
    text-align: center;
    color: var(--text-light);
}

.method-profile-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--border);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.method-profile-placeholder span {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    color: var(--text-light);
}

.method-profile-info {
    text-align: center;
}

.method-profile-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.method-profile-info p {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.method-profile-info p svg {
    width: 14px;
    height: 14px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Process Timeline */
.process-section {
    background: var(--light);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(14, 124, 123, 0.25);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content > p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-details ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-bottom: 12px;
}

.step-details li {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-details li svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    stroke-width: 2.5;
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    background: rgba(14, 124, 123, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.step-duration svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Differentiation */
.differentiation {
    background: var(--white);
}

.differentiation > .container > h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.diff-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.diff-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 16px 0 8px;
}

.diff-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial */
.testimonial {
    background: var(--light);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text blockquote::before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   FORM STYLES
   ============================================ */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: auto;
    accent-color: var(--primary);
}

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.form-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-methods {
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.method-info p {
    font-size: 14px;
    margin-bottom: 2px;
}

.method-info p a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.method-note {
    font-size: 13px;
    color: var(--text-light);
}

.response-time {
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.response-time h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.response-time h4 svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.response-time ul {
    list-style: none;
}

.response-time li {
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.response-time li svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.quick-actions {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.quick-actions h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ */
.faq {
    background: var(--light);
}

.faq > .container > h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Trust */
.trust-content {
    text-align: center;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--dark);
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-point {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.trust-point .icon-box {
    margin: 0 auto 16px;
}

.trust-point h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.trust-point p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Project Badge Styles */
.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.demo-badge {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.project-image {
    height: 220px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Screenshot Preview Styles */
.project-preview-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.project-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.project-preview-link:hover .project-screenshot {
    transform: scale(1.03);
}

.project-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 42, 74, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-preview-link:hover .project-preview-overlay {
    opacity: 1;
}

.project-preview-overlay span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 42, 74, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border: 2px solid var(--white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--white);
    color: var(--primary);
}

.project-content {
    padding: 28px;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-content > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-details {
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag {
    padding: 3px 8px;
    background: var(--light);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.project-results h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.project-results ul {
    list-style: none;
}

.project-results li {
    padding: 2px 0;
    font-size: 13px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-results li svg {
    width: 14px;
    height: 14px;
    stroke: var(--success);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Project Features - fix for demo cards */
.project-features h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.project-features ul {
    list-style: none;
}

.project-features li {
    padding: 4px 0;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Demo badge SVG fix */
.demo-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.project-tech span {
    padding: 3px 8px;
    background: var(--light);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
}

/* Mockup Preview Styles - Realistic website screenshots */
.project-mockup {
    height: 100%;
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    font-size: 8px;
    overflow: hidden;
    position: relative;
}

.mockup-navbar {
    height: 24px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    color: white;
}

.mockup-logo {
    font-weight: 600;
    font-size: 9px;
}

.mockup-nav {
    display: flex;
    gap: 8px;
}

.mockup-nav span {
    width: 20px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.mockup-hero {
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 12px;
}

.mockup-hero h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mockup-hero p {
    font-size: 7px;
    opacity: 0.9;
}

.mockup-btn {
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--secondary);
    border-radius: 10px;
    font-size: 7px;
    font-weight: 600;
}

.mockup-content {
    flex: 1;
    padding: 12px;
    display: flex;
    gap: 8px;
}

.mockup-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-card {
    background: var(--light);
    border-radius: 4px;
    padding: 8px;
    flex: 1;
}

.mockup-card-header {
    height: 20px;
    background: var(--primary);
    border-radius: 3px;
    margin-bottom: 6px;
}

.mockup-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-line {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.mockup-line.short { width: 60%; }
.mockup-line.medium { width: 80%; }

.mockup-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
}

.mockup-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: var(--light);
    border-radius: 4px;
}

.mockup-input {
    height: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 3px;
}

.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
}

.mockup-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2D9CDB 0%, #0E7C7B 100%);
    border-radius: 3px;
}

/* Before/After */
.process-showcase {
    background: var(--light);
}

.process-showcase > .container > h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 12px;
}

.process-showcase > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

.before-after-grid {
    max-width: 800px;
    margin: 0 auto;
}

.ba-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.before, .after {
    padding: 24px;
    border-radius: var(--radius);
}

.before {
    background: rgba(231, 111, 81, 0.06);
    border: 1px solid rgba(231, 111, 81, 0.15);
}

.after {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.before h4, .after h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.before ul, .after ul {
    list-style: none;
}

.before li, .after li {
    padding: 4px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.before li { color: var(--accent); }
.after li { color: var(--success); }

.before li svg, .after li svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    flex-shrink: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.before li svg { stroke: var(--accent); }
.after li svg { stroke: var(--success); }

.client-testimonial {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.client-testimonial p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 15px;
}

.client-testimonial cite {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Stats section */
.stats {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats .stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stats .stat-number {
    color: var(--secondary);
}

.stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Tools section */
.tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tools-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.tools-text > p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.tools-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-category h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tool-category h4 svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tool-category ul {
    list-style: none;
    padding-left: 26px;
}

.tool-category li {
    font-size: 14px;
    color: var(--text-light);
    padding: 3px 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech-item {
    padding: 12px 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; flex-wrap: wrap; }

    .services-grid,
    .offers-grid,
    .offers-grid-detailed {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .offer-card.featured { transform: none; }
    .offer-card.featured:hover { transform: translateY(-4px); }

    .benefits-content,
    .method-intro-grid,
    .tools-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .diff-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ba-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 13px;
    }

    .step-details ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 110px 0 70px; }
    .hero-title { font-size: 36px; }
    .hero-cta { flex-direction: column; align-items: center; }

    .page-hero h1 { font-size: 32px; }
    .section-header h2 { font-size: 28px; }

    .cta h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    section { padding: 64px 0; }

    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }

    .stats .stats-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }

    .process-step { gap: 16px; }
    .step-number { width: 48px; height: 48px; font-size: 18px; }
    .process-timeline::before { left: 23px; }

    .profile-photo-frame {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
