/* Wed.ing Shared Styles
   ============================================= */

/* CUSTOM PROPERTIES */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #faf8f5;
    --coral: #FF5A5F;
    --coral-light: #FF8C8C;
    --coral-dark: #E04850;
    --orange: #FF7E5F;
    --purple: #6d28d9;
    --purple-light: #a78bfa;
    --rose: #FF5A5F;
    --rose-light: #FF8C8C;
    --gold: #FF5A5F;
    --gold-light: #FF8C8C;

    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-logo-heart {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-heart svg {
    width: 24px;
    height: 24px;
    fill: var(--coral);
    filter: drop-shadow(0 2px 8px rgba(255, 90, 95, 0.4));
    transition: transform 0.3s var(--ease-out-expo), filter 0.3s;
}

.nav-logo:hover .nav-logo-heart svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 90, 95, 0.5));
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

.nav-logo-text .dot {
    color: var(--coral);
    font-weight: 900;
}

.nav-logo-text .tld {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-cta {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.nav-menu-btn {
    display: none;
    color: var(--white);
    padding: 0.5rem;
}

@media (max-width: 968px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: block;
    }
}

/* PAGE HEADER */
.page-header {
    padding: 10rem 3rem 4rem;
    text-align: center;
    background: var(--black);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 90, 95, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 126, 95, 0.15), transparent);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* SECTION STYLES */
.section {
    padding: 6rem 3rem;
}

.section-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* PRICING STYLES */
.pricing-section {
    padding: 4rem 3rem 8rem;
    background: var(--black);
}

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

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

.pricing-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gray-700);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
}

.pricing-name {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-card.featured .pricing-currency {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.pricing-feature svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.featured .pricing-feature {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-feature svg {
    color: var(--white);
}

.pricing-feature.disabled {
    color: var(--gray-600);
    text-decoration: line-through;
}

.pricing-feature.disabled svg {
    color: var(--gray-600);
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gray-800);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.pricing-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.pricing-card.featured .pricing-btn {
    background: var(--white);
    color: var(--coral);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* FEATURES / BENTO */
.features-section {
    padding: 4rem 3rem 8rem;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 4rem 1.5rem;
    }
}

/* PROCESS / HOW IT WORKS */
.process-section {
    padding: 4rem 3rem 8rem;
    background: var(--cream);
    color: var(--black);
}

.process-section .page-tag,
.process-section .section-tag {
    color: var(--coral);
}

.process-section .page-title,
.process-section .section-title {
    color: var(--black);
}

.process-section .page-description {
    color: var(--gray-600);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--orange));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral);
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .process-number {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--coral);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 90, 95, 0.2);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.process-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ STYLES */
.faq-section {
    padding: 4rem 3rem 8rem;
    background: var(--black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--gray-800);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.faq-icon svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq-answer-inner {
    padding-bottom: 2rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

/* CONTACT STYLES */
.contact-section {
    padding: 4rem 3rem 8rem;
    background: var(--black);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }
}

/* CTA SECTION */
.cta-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 50%, var(--black) 100%);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--coral-light);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.cta-btn:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
    padding: 4rem 3rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--gray-800);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-heart {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-heart svg {
    width: 32px;
    height: 32px;
    fill: var(--coral);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.footer-logo-text .dot {
    color: var(--coral);
}

.footer-logo-text .tld {
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.footer-made svg {
    color: var(--rose);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* BREADCRUMB */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.breadcrumb a {
    color: var(--gray-400);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* BACK TO HOME LINK */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--gold);
}

.back-link svg {
    width: 16px;
    height: 16px;
}
/* ====== Breadcrumbs (added 2026-05) ====== */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.breadcrumbs a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs span { margin: 0 0.4rem; color: var(--gray-600); }
.breadcrumbs span[aria-current="page"] { color: var(--coral); margin-left: 0.4rem; margin-right: 0; }
