:root {
    --primary-teal: #1e6f73;
    --primary-teal-light: #29969b;
    --primary-teal-dark: #1a5d61;
    --white: #FFFFFF;
    --black: #000000;
    --dark-text: #000000;
    --gray-text: #4B5563;
    --light-gray: #9CA3AF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --bg-section: #FAFBFC;
    --bg-accent: rgba(30, 111, 115, 0.05);
    --bg-accent-hover: rgba(41, 150, 155, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: block;
}

.footer .logo-img {
    width: 70px;
    height: 70px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-teal);
    position: relative;
    flex-shrink: 0;
}

.logo-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
}

.brand-text {
    font-family: 'Lobster', cursive;
    font-size: 24px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-teal-light));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

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

.btn-download-nav {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: var(--white) !important;
    padding: 12px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 12px rgba(30, 111, 115, 0.2);
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

.btn-download-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-download-nav:hover::before {
    left: 100%;
}

.btn-download-nav:hover {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-teal) 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 111, 115, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-section) 100%);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    bottom: -10%;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-section) 50%, var(--white) 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(41, 150, 155, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 111, 115, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(41, 150, 155, 0.04) 0%, transparent 70%);
    z-index: -2;
    overflow: hidden;
    will-change: transform;
    animation: gradientShift 15s ease infinite;
}

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

/* Animated Background Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    top: -100px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
    top: 20%;
    right: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-teal);
    bottom: 10%;
    left: 10%;
    animation: floatShape 18s ease-in-out infinite;
    animation-delay: -5s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--primary-teal-light);
    top: 50%;
    right: 20%;
    animation: floatShape 22s ease-in-out infinite reverse;
    animation-delay: -8s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    bottom: -50px;
    right: 30%;
    animation: floatShape 16s ease-in-out infinite;
    animation-delay: -3s;
}

.shape-6 {
    width: 280px;
    height: 280px;
    background: var(--primary-teal);
    top: 30%;
    left: 50%;
    animation: floatShape 24s ease-in-out infinite reverse;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(41, 150, 155, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(30, 111, 115, 0.15) 0%, transparent 30%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(41, 150, 155, 0.03) 2px, rgba(41, 150, 155, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(30, 111, 115, 0.03) 2px, rgba(30, 111, 115, 0.03) 4px);
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 80px 24px;
}

.hero-text {
    z-index: 1;
}

.hero-tagline {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--black);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out, gradientShift 4s ease-in-out infinite;
    background: linear-gradient(135deg, var(--black) 0%, var(--black) 40%, var(--primary-teal) 60%, var(--primary-teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

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

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


.hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--gray-text);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(41, 150, 155, 0.3),
        0 0 0 0 rgba(41, 150, 155, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both, pulse 2s ease-in-out infinite;
    letter-spacing: 0.3px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-teal) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(30, 111, 115, 0.35),
        0 0 0 8px rgba(30, 111, 115, 0.08);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(30, 111, 115, 0.25),
            0 0 0 0 rgba(30, 111, 115, 0.3);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(30, 111, 115, 0.35),
            0 0 0 10px rgba(30, 111, 115, 0);
    }
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-teal);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: 2px solid var(--primary-teal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 111, 115, 0.1);
    animation: fadeInUp 1s ease-out 0.5s both;
    letter-spacing: 0.3px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--primary-teal-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 111, 115, 0.25);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-mockups {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.phone-mockup {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateZ(20px) scale(1.05);
}

.phone-mockup {
    position: relative;
}

.phone-left {
    transform: translateY(-20px);
    animation: float 4s ease-in-out infinite;
    will-change: transform;
}

.phone-right {
    transform: translateY(20px);
    animation: float 4s ease-in-out infinite 2s;
    will-change: transform;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(30, 111, 115, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mockup:hover .app-screenshot {
    transform: scale(1.02);
}

.app-feed {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-light);
}

.feed-item {
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    color: var(--dark-text);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.app-chat {
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.chat-notification {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-size: 12px;
    max-width: 80%;
    box-shadow: 0 4px 12px rgba(41, 150, 155, 0.4);
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}


.section:nth-child(even) {
    background: var(--bg-section);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(41, 150, 155, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: sectionGlow 8s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Animated grid pattern for sections */
.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(41, 150, 155, 0.02) 2px,
            rgba(41, 150, 155, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(30, 111, 115, 0.02) 2px,
            rgba(30, 111, 115, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.5;
    animation: gridMove 30s linear infinite;
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-teal-light);
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .section-text {
    order: 2;
}

.section-content.reverse .section-image,
.section-content.reverse .section-mockups {
    order: 1;
}

/* Who We Are Section */
.who-we-are {
    background: var(--bg-section);
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 150, 155, 0.06) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 150, 155, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-block:hover::before {
    opacity: 1;
}

.feature-block:hover {
    background: var(--white);
    border-color: var(--primary-teal-light);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(30, 111, 115, 0.15),
        0 0 0 1px var(--primary-teal-light);
}


.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(30, 111, 115, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.feature-block:hover .feature-icon::after {
    width: 100px;
    height: 100px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-block h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-block p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    flex-grow: 1;
}

.section-image {
    position: relative;
}

.lifestyle-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(30, 111, 115, 0.1);
    position: relative;
}

.lifestyle-photo,
.activity-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Realistic photos should cover the area */
.lifestyle-photo,
.activity-photo {
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
}

.lifestyle-image:hover .lifestyle-photo,
.activity-card:hover .activity-photo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Lifestyle Grid */
.lifestyle-grid {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.lifestyle-grid::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(41, 150, 155, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(30, 111, 115, 0.03) 0%, transparent 40%);
    pointer-events: none;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

.lifestyle-card {
    text-align: center;
}

.lifestyle-card .lifestyle-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(30, 111, 115, 0.1);
}

.lifestyle-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-top: 16px;
}

/* Find Your Tribe Section */
.find-tribe {
    background: var(--bg-section);
    text-align: center;
    position: relative;
}

.find-tribe::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 111, 115, 0.05) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation: pulseGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.activity-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 150, 155, 0.1), transparent);
    transition: left 0.5s ease;
}

.activity-card:hover::before {
    left: 100%;
}

.activity-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-teal-light);
    box-shadow: 
        0 25px 60px rgba(30, 111, 115, 0.2),
        0 0 0 1px var(--primary-teal-light);
}

.activity-image {
    width: 100%;
    height: 200px;
    background: rgba(30, 111, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.activity-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 24px 0 12px;
    padding: 0 24px;
}

.activity-card p {
    font-size: 16px;
    color: var(--gray-text);
    padding: 0 24px 24px;
    line-height: 1.7;
}

/* Get Started Section */
.get-started {
    background: var(--white);
    position: relative;
}

.get-started::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(41, 150, 155, 0.04), rgba(30, 111, 115, 0.04));
    top: 50%;
    right: 10%;
    border-radius: 50%;
    animation: floatGlow 12s ease-in-out infinite;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.section-mockups {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Footer */
.footer {
    background: var(--bg-section);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-brand a:hover {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-teal);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 111, 115, 0.1);
}

.footer-copyright p {
    color: var(--gray-text);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-mockups {
        justify-content: center;
        margin-top: 40px;
    }

    .section-content {
        grid-template-columns: 1fr;
    }

    .section-content.reverse .section-text {
        order: 1;
    }

    .section-content.reverse .section-image,
    .section-content.reverse .section-mockups {
        order: 2;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

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

    .activity-cards {
        grid-template-columns: 1fr;
    }

    .hero-tagline {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-tagline {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .phone-frame {
        width: 150px;
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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

}

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

    .hero {
        padding-top: 60px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-tagline {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .phone-frame {
        width: 120px;
        height: 240px;
    }
}
