/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF1464;
    --primary-pink-light: #FF6BA3;
    --primary-pink-dark: #C51162;
    --midnight: #0F172A;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-500: #7C8BA1;
    --gray-600: #64748B;
    --gray-700: #475569;
    --gray-900: #0F172A;
    --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 30px 70px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.65;
}

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

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

section {
    padding: 70px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    gap: 0.15rem;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gray-500);
}

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

.nav-link {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.25s ease;
}

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

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

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 999px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 20, 100, 0.25), transparent 65%);
    filter: blur(40px);
    top: -250px;
    right: -200px;
}

.hero-shape.secondary {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.25), transparent 60%);
    bottom: -150px;
    left: -200px;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 20, 100, 0.1);
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.4rem;
}

.pink-gradient {
    background: linear-gradient(120deg, var(--primary-pink), var(--primary-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--gray-600);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary-pink), var(--primary-pink-light));
    color: var(--white);
    box-shadow: 0 20px 40px rgba(255, 20, 100, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border-color: rgba(255, 20, 100, 0.25);
}

.btn-secondary:hover {
    background: rgba(255, 20, 100, 0.08);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.stat-item {
    min-width: 140px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

.hero-trusted {
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
}

.hero-trusted p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.hero-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.hero-logos span {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    border-radius: 26px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.visual-card.primary {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
    color: var(--white);
}

.card-pill {
    display: inline-flex;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 1.2rem;
}

.visual-card.primary h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.visual-card.primary p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.visual-metrics {
    display: flex;
    gap: 2rem;
}

.visual-metrics span {
    font-size: 1.8rem;
    font-weight: 700;
}

.visual-metrics small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.visual-card.secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.visual-card.secondary h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.visual-card.secondary ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: var(--gray-600);
}

.visual-card.secondary li {
    position: relative;
    padding-left: 1.2rem;
}

.visual-card.secondary li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 10px;
    background: var(--primary-pink);
}

.visual-badge {
    position: absolute;
    right: -10px;
    bottom: -10px;
    background: var(--white);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.25);
    text-align: center;
}

.visual-badge p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.visual-badge span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 20, 100, 0.12);
    color: var(--primary-pink);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gray-600);
}

.about {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--gray-600);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary-pink), var(--primary-pink-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.about-image {
    position: relative;
}

.about-photo-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-card);
}

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

.photo-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(10, 12, 28, 0.35) 100%);
    pointer-events: none;
}

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

.awards {
    background: var(--gray-50);
}

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

.award-card {
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.award-frame {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    background: #050814;
}

.award-photo {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 360px;
}

.award-copy {
    padding: 1.8rem 2rem 2rem;
}

.award-copy h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--gray-900);
}

.award-copy p {
    color: var(--gray-600);
    line-height: 1.7;
}

.services-grid,
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.service-card,
.why-us-item {
    border-radius: 24px;
    padding: 2.4rem;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.why-us-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.service-card.featured {
    background: linear-gradient(145deg, rgba(255, 20, 100, 0.08), rgba(255, 20, 100, 0.03));
    border-color: rgba(255, 20, 100, 0.35);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-badge {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    background: var(--primary-pink);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--gray-600);
}

.service-features li {
    padding-left: 1.2rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-pink);
    left: 0;
    top: 10px;
}

.why-us {
    background: var(--gray-50);
}

.why-us-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary-pink), var(--primary-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: #090E1A;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 20, 100, 0.15);
    top: -150px;
    right: -120px;
    filter: blur(60px);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.quote {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.client h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.client p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.pill {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Contact */
.contact {
    background: var(--gray-50);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 20, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 26px;
    padding: 2.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1.5px solid rgba(148, 163, 184, 0.6);
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 20, 100, 0.15);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-success-message {
    padding: 2rem 1.25rem;
    font-size: 1rem;
    color: var(--gray-900);
    font-family: inherit;
    line-height: 1.65;
    text-align: center;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #0F172A, #1E0B1F);
    color: var(--white);
    position: relative;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 20, 100, 0.3), transparent 55%);
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cta-text h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-actions .btn-primary {
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: #050814;
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo-link .logo-title,
.footer-logo-link .logo-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
    height: 56px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-pink-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        position: absolute;
        top: 90px;
        right: 24px;
        left: 24px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 24px;
        padding: 1.5rem;
        box-shadow: var(--shadow-card);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-visual {
        order: -1;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-buttons,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

