/* css/style.css */
:root {
    /* Business Card Color Palette */
    --cream: #e6e1dc;
    --deep-blue: #1b2b3a;
    --navy-black: #00121f;
    --white: #ffffff;
    --off-white: #fafafa;

    /* Derived Colors */
    --deep-blue-light: rgba(27, 43, 58, 0.05);
    --deep-blue-medium: rgba(27, 43, 58, 0.1);
    --deep-blue-hover: rgba(27, 43, 58, 0.9);
    --cream-dark: rgba(230, 225, 220, 0.5);
    --cream-light: rgba(230, 225, 220, 0.3);
}

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

html {
    overflow-x: hidden;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--deep-blue);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* ================================================
   HEADER & NAV
   ================================================ */

header {
    padding: 1rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(27, 43, 58, 0.08);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
}

.logo img {
    width: 200px;
    height: auto;
}

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

.nav-center a {
    text-decoration: none;
    color: var(--deep-blue);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-center a:hover, .nav-center a.active {
    color: var(--deep-blue);
    background: var(--cream);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 101;
}

.sign-in {
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--cream);
}

.sign-in:hover {
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--deep-blue);
    z-index: 101;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--deep-blue);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
    background: var(--deep-blue);
    color: var(--white);
}

.mobile-sign-in {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--deep-blue);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ================================================
   HOMEPAGE HERO
   ================================================ */

.hero-section {
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 10rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(230,225,220,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

/* FIX: width: 100% prevents overflow inside flex hero containers */
.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 225, 220, 0.15);
    color: var(--cream);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(230, 225, 220, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    opacity: 0.92;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--cream);
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   CTA BUTTONS
   ================================================ */

.cta-button {
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 2px solid;
    touch-action: manipulation;
}

.cta-button.primary {
    background: var(--white);
    color: var(--navy-black);
    border-color: var(--white);
}

.cta-button.primary:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(230, 225, 220, 0.6);
}

.cta-button.secondary:hover {
    background: rgba(230, 225, 220, 0.15);
    border-color: var(--cream);
}

.cta-button:hover, .cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ================================================
   SECTIONS — SHARED
   ================================================ */

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

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--deep-blue);
    padding: 0.5rem 1.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--navy-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    color: var(--deep-blue);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.88;
}

/* ================================================
   IDEAL CLIENT SECTION
   ================================================ */

.ideal-client-section {
    background: var(--off-white);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 0;
}

.client-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: var(--deep-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 43, 58, 0.12);
}

.card-header {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.yes-icon {
    background: rgba(27, 43, 58, 0.1);
    color: var(--deep-blue);
}

.no-icon {
    background: var(--cream);
    color: var(--navy-black);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--navy-black);
    font-weight: 600;
}

.client-list {
    list-style: none;
}

.client-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--cream);
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list strong {
    display: block;
    color: var(--navy-black);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.client-list span {
    color: var(--deep-blue);
    opacity: 0.85;
    font-size: 0.95rem;
}

.client-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-black) 100%);
    border-radius: 16px;
    border: none;
}

.cta-question {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.client-cta .cta-button {
    background: var(--white);
    color: var(--navy-black);
    border-color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
}

.client-cta .cta-button:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ================================================
   HOMEPAGE SERVICES PREVIEW
   ================================================ */

.services-preview {
    background: var(--white);
}

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

/* Homepage service cards (simple icon + title + link) */
.service-card {
    background: var(--off-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--deep-blue);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 43, 58, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.4rem;
    color: var(--navy-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--deep-blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.88;
}

.service-link {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--navy-black);
    gap: 0.8rem;
}

.service-link::after {
    content: "→";
}

/* ================================================
   METHODOLOGY SECTION
   ================================================ */

.methodology-section {
    background: var(--cream);
}

.methodology-steps {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--deep-blue);
    box-shadow: 0 10px 30px rgba(27, 43, 58, 0.08);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-blue);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--navy-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--deep-blue);
    line-height: 1.7;
    opacity: 0.88;
}

/* ================================================
   DIFFERENTIATOR SECTION
   ================================================ */

.differentiator-section {
    background: var(--deep-blue);
    color: var(--white);
    padding: 6rem 2rem;
}

.diff-header {
    text-align: center;
    margin-bottom: 4rem;
}

.diff-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.diff-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--cream);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 225, 220, 0.15);
    transition: all 0.3s ease;
}

.diff-item:hover {
    background: rgba(230, 225, 220, 0.1);
    border-color: var(--cream);
    transform: translateY(-5px);
}

.diff-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.diff-item p {
    color: var(--cream);
    line-height: 1.7;
    opacity: 0.92;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--navy-black);
    color: var(--white);
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.footer-description {
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    display: block;
    opacity: 0.9;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--white);
    opacity: 1;
}

.footer-contact-text {
    color: var(--cream);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-button {
    background: var(--white);
    color: var(--navy-black);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--white);
}

.footer-button:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(230, 225, 220, 0.15);
}

.copyright {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ================================================
   GLOBAL RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .logo img {
        width: 150px;
    }

    .nav-center {
        display: none;
    }

    .nav-right .sign-in {
        display: none;
    }

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

    .hero-section {
        padding: 6rem 1.5rem 5rem;
    }

    section {
        padding: 4rem 0;
    }

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

    .step-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 1.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .hero-section {
        padding: 5rem 1.5rem 4rem;
    }

    .client-card,
    .service-card,
    .step-item {
        padding: 2rem 1.5rem;
    }
}

/* ================================================
   FOCUS STYLES
   ================================================ */

*:focus {
    outline: 2px solid var(--deep-blue);
    outline-offset: 3px;
}

/* ================================================
   CONSULTATION MODAL
   ================================================ */

.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 18, 31, 0.85);
    backdrop-filter: blur(4px);
    padding: 1rem;
    overflow-y: auto;
}

.consultation-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 18, 31, 0.3);
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--cream);
    position: relative;
}

.modal-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--navy-black);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--deep-blue);
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--deep-blue);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--cream);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(27, 43, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--navy-black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 43, 58, 0.3);
}

.submit-button:disabled {
    background: var(--cream);
    color: var(--deep-blue);
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.85rem;
    color: var(--deep-blue);
    opacity: 0.7;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.success-message h3 {
    color: var(--navy-black);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.success-button {
    padding: 0.875rem 1.5rem;
    background: var(--navy-black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-button:hover {
    background: var(--deep-blue);
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

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

/* ================================================
   STRATEGY / DESIGN / DEVELOP PAGE HEROES
   Note: develop.php uses .design-hero-section
   ================================================ */

.strategy-hero-section,
.design-hero-section,
.develop-hero-section {
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;        /* ADD THIS */
    max-width: 100%;    /* ADD THIS */
}

.strategy-hero-section::before,
.design-hero-section::before,
.develop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,71,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ================================================
   STRATEGY / DESIGN / DEVELOP — SERVICE CARDS
   ================================================ */

/* Override homepage .service-card for service pages */
.services-section .service-card {
    background: var(--white);
    border: 1px solid var(--cream);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-blue), var(--deep-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-section .service-card:hover,
.services-section .service-card:focus {
    border-color: var(--deep-blue);
    box-shadow: 0 10px 40px rgba(27, 43, 58, 0.1);
    transform: translateY(-5px);
}

.services-section .service-card:hover::before,
.services-section .service-card:focus::before {
    transform: scaleX(1);
}

.services-section .service-card.featured {
    border: 2px solid var(--deep-blue);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--deep-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-section .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.services-section .service-name {
    font-size: clamp(1.2rem, 4vw, 1.3rem);
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 1rem;
}

.services-section .service-description {
    font-size: 1rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 1;
}

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

.service-features li {
    color: var(--deep-blue);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-blue);
    font-weight: 600;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-range {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.price-timeline {
    font-size: 0.9rem;
    color: var(--deep-blue);
    text-align: right;
}

.service-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--deep-blue);
    text-align: center;
}

/* Services grid — mobile-first, multi-column on desktop */
.services-section .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* ================================================
   CONDITIONS SECTION
   ================================================ */

.conditions-section {
    padding: 3rem 1.5rem;
    background: var(--cream);
}

.conditions-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.conditions-box h3 {
    font-size: 1.8rem;
    color: var(--navy-black);
    margin-bottom: 2rem;
}

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

.condition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

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

.condition-item p {
    color: var(--deep-blue);
    font-size: 1rem;
    line-height: 1.4;
}

/* ================================================
   CTA SECTION (service pages)
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-black) 100%);
    color: var(--white);
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ================================================
   ABOUT PAGE
   ================================================ */

.hero-section-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.hero-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-about {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--deep-blue);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(27, 43, 58, 0.08);
    border: 1px solid var(--cream);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-black) 100%);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 43, 58, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-black) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

.card-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.card-content {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: var(--deep-blue);
    line-height: 1.7;
    font-weight: 400;
}

.stats-section {
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stats-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.stats-grid .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stats-grid .stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stats-grid .stat-label {
    font-size: clamp(0.9rem, 3vw, 1rem);
    opacity: 0.9;
    font-weight: 400;
    color: var(--cream);
}

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.values-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    color: var(--navy-black);
    text-align: center;
    margin-bottom: 3rem;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.value-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 43, 58, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.value-title {
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 1rem;
}

.value-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--deep-blue);
    line-height: 1.6;
}

.cta-section-about {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(27, 43, 58, 0.2);
}

.cta-card .cta-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card .cta-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-card .cta-button {
    background: var(--white);
    color: var(--navy-black);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 48px;
}

.cta-card .cta-button:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 43, 58, 0.3);
}

/* ================================================
   MEMBERSHIP PAGE HERO
   ================================================ */

.membership-hero-section {
    background: linear-gradient(135deg, var(--navy-black) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.membership-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.membership-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--cream);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   MEMBERSHIP PAGE — SERVICE CARDS LAYOUT
   ================================================ */

.services-section {
    background: var(--white);
    padding: 5rem 0 8rem;
}

/* Override the homepage .service-card style for membership page */
.membership-hero-section ~ main .services-section .service-card,
.services-section > .section-container > .service-card {
    text-align: left;
    border: 2px solid var(--cream);
    background: var(--white);
    margin-bottom: 3rem;
}

/* ================================================
   ESTIMATE CALCULATOR (Membership page widget)
   ================================================ */

.estimate-calculator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    width: 350px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border: 2px solid var(--deep-blue);
    transform: translateY(calc(100% + 40px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.estimate-calculator.visible {
    transform: translateY(0);
}

.estimate-calculator.minimized {
    transform: translateY(calc(100% - 60px));
}

.estimate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream);
    cursor: pointer;
}

.estimate-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estimate-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-blue);
    cursor: pointer;
    transition: transform 0.3s;
}

.estimate-calculator.minimized .estimate-toggle {
    transform: rotate(180deg);
}

.estimate-body {
    display: block;
    overflow-y: auto;
    flex: 1;
}

.estimate-calculator.minimized .estimate-body {
    display: none;
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream);
}

.estimate-row:last-child {
    border-bottom: none;
}

.estimate-label {
    font-size: 0.9rem;
    color: #666;
}

.estimate-value {
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1rem;
}

.estimate-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--deep-blue);
}

.estimate-total .estimate-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--deep-blue);
}

.estimate-total .estimate-value {
    font-size: 1.5rem;
    color: var(--deep-blue);
}

.estimate-savings {
    background: var(--cream);
    color: var(--deep-blue);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
}

.estimate-cta {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--deep-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.estimate-cta:hover {
    background: var(--navy-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 43, 58, 0.3);
}

.estimate-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
    text-align: center;
}

/* ================================================
   QUOTE MODAL
   ================================================ */

.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 31, 0.8);
    backdrop-filter: blur(4px);
}

.quote-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 18, 31, 0.3);
    z-index: 10001;
    animation: slideUp 0.3s ease-out;
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--deep-blue);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: var(--cream);
    color: var(--navy-black);
}

.quote-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.quote-submit-btn:hover {
    background: var(--navy-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 43, 58, 0.3);
}

/* ================================================
   MEMBERSHIP — PACKAGE BOXES
   ================================================ */

.package-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.package-box {
    background: white;
    border: 2px solid var(--cream);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 58, 0.15);
    border-color: var(--deep-blue);
}

.package-box.selected {
    border: 3px solid var(--deep-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 58, 0.25);
    background: var(--deep-blue-light);
}

.package-box.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--deep-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-box.popular {
    border-color: var(--deep-blue);
    position: relative;
    background: var(--deep-blue-light);
}

.package-box.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 1rem 0;
}

.package-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.package-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #666;
}

.package-features li:before {
    content: "✓ ";
    color: var(--deep-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.package-commitment {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream);
    font-size: 0.85rem;
    color: #999;
    text-align: center;
}

.cost-options {
    background: var(--deep-blue-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--cream);
    text-align: left;
}

.cost-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid var(--cream);
    transition: all 0.3s;
    cursor: pointer;
}

.cost-option:hover {
    border-color: var(--deep-blue);
    box-shadow: 0 2px 8px rgba(27, 43, 58, 0.1);
}

.cost-option.selected {
    border-color: var(--deep-blue);
    background: var(--deep-blue-light);
}

.cost-option-info h4 {
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cost-option-info p {
    font-size: 0.85rem;
    color: #666;
}

.cost-option-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
}

/* Added to cart badge */
.added-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Service Button (membership page) */
.service-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--deep-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--deep-blue);
}

.service-button:hover {
    background: var(--navy-black);
    border-color: var(--navy-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 43, 58, 0.2);
}

/* Service Level Badge (membership page) */
.service-level {
    display: inline-block;
    background: var(--deep-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ================================================
   SERVICE PAGE HEROES — MOBILE FIX
   strategy.php  → .strategy-hero-section
   design.php    → .design-hero-section
   develop.php   → .design-hero-section (same class!)
   ================================================ */

@media (max-width: 768px) {
    .strategy-hero-section,
    .design-hero-section,
    .develop-hero-section {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
        align-items: flex-start;
        justify-content: center;
    }

    .strategy-hero-section .hero-title,
    .design-hero-section .hero-title,
    .develop-hero-section .hero-title {
        font-size: clamp(1.7rem, 6vw, 2.5rem);
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .strategy-hero-section .hero-subtitle,
    .design-hero-section .hero-subtitle,
    .develop-hero-section .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge,
    .hero-badge-light {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

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

    .membership-hero-section {
        padding: 5rem 1.5rem 3rem;
    }

    .package-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .strategy-hero-section,
    .design-hero-section,
    .develop-hero-section {
        padding: 4rem 1.25rem 2.5rem;
    }

    .strategy-hero-section .hero-title,
    .design-hero-section .hero-title,
    .develop-hero-section .hero-title {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

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

    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

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

    .membership-hero-section {
        padding: 4rem 1.25rem 2.5rem;
    }
}