/* ======================
   CSS Variables & Reset
   ====================== */

:root {
    --primary: #16697A;
    --primary-dark: #114554;
    --primary-light: #1e8a9f;
    --accent: #FFA62B;
    --dark: #1a1a1a;
    --gray-900: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-500: #6b6b6b;
    --gray-300: #b8b8b8;
    --gray-100: #e8e8e8;
    --white: #ffffff;
    --off-white: #f8f9fa;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Sora', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(22, 105, 122, 0.15);
    --shadow-lg: 0 20px 60px rgba(22, 105, 122, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ======================
   Typography
   ====================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

/* ======================
   Layout Components
   ====================== */

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

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto 0;
}

/* ======================
   Navigation
   ====================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-tertiary {
    background: transparent;
    color: var(--gray-700);
    border-color: transparent;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

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

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    animation: slideInLeft 0.6s ease;
    animation-fill-mode: both;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.3s;
    color: var(--primary);
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    animation: fadeIn 1s ease 0.3s both;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(22, 105, 122, 0.1) 0%, rgba(22, 105, 122, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
}

/* ======================
   Scroll Indicator
   ====================== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.15s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* ======================
   Why Section
   ====================== */

.why {
    padding: 6rem 0;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ======================
   Transformation Section
   ====================== */

.transformation {
    padding: 6rem 0;
}

.transformation-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transformation-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.transformation-text h2 {
    margin-bottom: 1.5rem;
}

.transformation-text p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.transformation-quote {
    background: var(--primary);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.transformation-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.transformation-quote blockquote {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ======================
   Services Preview
   ====================== */

.services-preview {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

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

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

/* ======================
   Credentials
   ====================== */

.credentials {
    padding: 6rem 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.credential:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.credential-icon {
    font-size: 2rem;
}

.credential-text {
    font-weight: 600;
}

/* ======================
   Final CTA
   ====================== */

.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ======================
   Footer
   ====================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-brand p {
    color: var(--gray-300);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

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

.footer-social p {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icons a {
    color: var(--gray-300);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======================
   Contact Page Styles
   ====================== */

.contact-section {
    padding: 4rem 0 6rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-benefits {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-benefits li {
    margin-bottom: 2rem;
}

.contact-benefits strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-benefits p {
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-locations {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
}

.contact-locations h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-locations p {
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--gray-100);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 1rem;
    text-align: center;
}

.form-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.form-success h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.alt-contact {
    padding: 4rem 0;
    background: var(--off-white);
    text-align: center;
}

.alt-contact h2 {
    margin-bottom: 1rem;
}

.alt-contact > p {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.method-icon {
    font-size: 2rem;
}

/* ======================
   Schedule Page Styles
   ====================== */

.scheduling-section {
    padding: 4rem 0 6rem;
}

.scheduling-info {
    margin-bottom: 4rem;
    text-align: center;
}

.scheduling-info h2 {
    margin-bottom: 2rem;
}

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

.expect-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.expect-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.expect-item p {
    color: var(--gray-700);
    line-height: 1.7;
}

.calendar-embed {
    margin: 4rem 0;
}

.embed-placeholder {
    background: var(--off-white);
    border: 3px dashed var(--gray-300);
    border-radius: 8px;
    padding: 3rem;
}

.placeholder-content {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-content h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.placeholder-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.setup-instructions {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    color: var(--gray-700);
    line-height: 1.8;
}

.placeholder-content code {
    display: block;
    background: var(--dark);
    color: #00ff00;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    margin-top: 1rem;
}

.alt-scheduling {
    text-align: center;
    padding: 3rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    margin-top: 4rem;
}

.alt-scheduling h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.alt-scheduling p {
    margin-bottom: 1.5rem;
}

/* ======================
   Assessments Page Styles
   ====================== */

.forms-intro {
    padding: 4rem 0;
    background: var(--off-white);
}

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

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content > p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.intro-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--gray-700);
    line-height: 1.6;
}

.forms-section {
    padding: 4rem 0;
}

.forms-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.form-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-card > h3 {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    margin: 0;
}

.form-card > p {
    padding: 1.5rem 2rem 0;
    color: var(--gray-700);
    line-height: 1.7;
}

.form-time {
    padding: 0 2rem 1.5rem;
    color: var(--gray-500);
    font-style: italic;
}

.form-embed {
    padding: 2rem;
}

.form-questions {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.forms-questions {
    padding: 4rem 0;
    background: var(--off-white);
    text-align: center;
}

.forms-questions h2 {
    margin-bottom: 1rem;
}

.forms-questions p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ======================
   Services Page Styles
   ====================== */

.service-detail {
    padding: 6rem 0;
}

.service-detail.alternate {
    background: var(--off-white);
}

.service-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.service-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.service-info h2 {
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.service-info h3 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.price-box {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.price {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.reconditioning {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.reconditioning-content {
    max-width: 900px;
    margin: 0 auto;
}

.reconditioning-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.reconditioning-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.reconditioning-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.approach-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.approach-item p {
    margin: 0;
    font-size: 1rem;
}

.how-to-choose {
    padding: 6rem 0;
    text-align: center;
    background: var(--off-white);
}

.choose-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
}

/* ======================
   About Page Styles
   ====================== */

.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
    background: var(--off-white);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.story-section {
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

.credentials-detail {
    padding: 6rem 0;
}

.credentials-list {
    max-width: 900px;
    margin: 0 auto;
}

.cred-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.cred-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.cred-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cred-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cred-info p {
    color: var(--gray-700);
    line-height: 1.6;
}

.why-over-40 {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.why-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.why-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
}

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

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .transformation-content {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
}

