/* ================================================================
   ROCA INDUSTRIES — MSP WordPress Theme Styles
   ================================================================ */

/* ── Custom Properties ── */
:root {
    --plum-dark: #1C1033;
    --plum: #2D1B69;
    --mint: #2DD4BF;
    --mint-light: #CCFBF1;
    --cream: #FAF5FF;
    --white: #FFFFFF;

    --font-body: 'DM Sans', system-ui, sans-serif;

    --container: 1280px;
    --radius: 16px;
    --radius-lg: 8px;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--plum);
    background: var(--white);
    line-height: 1.6;
}

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

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
}

/* ── Layout ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ── Grain Overlay ── */
.grain-overlay {
    position: relative;
}

.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ── Header & Navigation ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.site-header.scrolled,
.site-header.has-bg {
    background: rgba(28, 16, 51, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(28, 16, 51, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 640px) {
    .nav-inner { height: 5rem; }
}

.nav-wordmark {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 50;
}

@media (min-width: 640px) {
    .nav-wordmark { font-size: 1.875rem; }
}

.nav-wordmark .dot {
    color: var(--mint);
}

/* Desktop Nav */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

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

.nav-links li.current-menu-item a,
.nav-links li.current_page_item a,
.nav-links li.current_page_ancestor a {
    color: var(--mint);
}

.nav-cta {
    display: inline-block;
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: rgba(45, 212, 191, 0.9);
    box-shadow: 0 10px 15px -3px rgba(45, 212, 191, 0.2);
}

/* Hamburger */
.hamburger {
    display: block;
    padding: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 50;
}

@media (min-width: 768px) {
    .hamburger { display: none; }
}

.hamburger-lines {
    width: 1.5rem;
    height: 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines span {
    display: block;
    height: 2px;
    width: 1.5rem;
    background: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(0, 9px);
}

.hamburger.open .hamburger-lines span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.open .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -9px);
}

/* Mobile Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 767px) {
    .mobile-overlay { display: block; }
}

.mobile-overlay.open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 16, 51, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open .mobile-backdrop {
    opacity: 1;
}

.mobile-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 18rem;
    background: var(--plum-dark);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.mobile-overlay.open .mobile-panel {
    transform: translateX(0);
}

.mobile-nav {
    padding: 6rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--mint);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .nav-cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--plum-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    padding: 3rem 0 4rem;
}

@media (min-width: 640px) {
    .footer-inner { padding: 4rem 0; }
}

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

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-brand .nav-wordmark {
    display: inline-block;
    font-size: 1.5rem;
}

.footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul a {
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--mint);
}

.footer-col p {
    font-size: 0.875rem;
}

.footer-cta-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.footer-cta-btn:hover {
    background: rgba(45, 212, 191, 0.9);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: rgba(45, 212, 191, 0.9);
    box-shadow: 0 10px 15px -3px rgba(45, 212, 191, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-plum {
    display: inline-block;
    background: var(--plum);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition);
}

.btn-plum:hover {
    background: var(--plum-dark);
}

.btn-plum-sm {
    display: inline-block;
    background: var(--plum);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition);
}

.btn-plum-sm:hover {
    background: var(--plum-dark);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, var(--plum-dark), var(--plum), var(--plum-dark));
    overflow: hidden;
}

.hero-glows {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.04);
    filter: blur(64px);
}

.hero-glow-2 {
    position: absolute;
    bottom: -8rem;
    left: -8rem;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.04);
    filter: blur(64px);
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.3);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-dot-1 {
    top: 33%;
    right: 25%;
    width: 8px;
    height: 8px;
}

.hero-dot-2 {
    top: 66%;
    left: 33%;
    width: 6px;
    height: 6px;
    background: rgba(45, 212, 191, 0.2);
    animation-delay: 1s;
}

.hero-dot-3 {
    top: 25%;
    left: 15%;
    width: 4px;
    height: 4px;
    background: rgba(45, 212, 191, 0.25);
    animation-delay: 2s;
}

.hero-dot-4 {
    bottom: 33%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: rgba(45, 212, 191, 0.15);
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    padding: 8rem 0 8rem;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .hero-content { padding: 10rem 0; }
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
    .hero h1 { font-size: 4.5rem; }
}

.hero h1 .highlight {
    color: var(--mint);
}

.hero .tagline {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 42rem;
}

@media (min-width: 640px) {
    .hero .tagline { font-size: 1.25rem; }
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Value Section ── */
.value-section {
    background: var(--cream);
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .value-section { padding: 7rem 0; }
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
}

@media (min-width: 640px) {
    .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(45, 27, 105, 0.6);
}

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

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

@media (min-width: 1024px) {
    .value-grid { gap: 2rem; }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(45, 212, 191, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    margin-bottom: 1.25rem;
}

.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(45, 27, 105, 0.55);
    line-height: 1.6;
}

/* ── Pricing Section ── */
.pricing-section {
    background: var(--white);
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .pricing-section { padding: 7rem 0; }
}

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

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

@media (min-width: 1024px) {
    .pricing-grid { gap: 2rem; }
}

.pricing-card {
    position: relative;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--plum-dark);
    border: 1px solid rgba(45, 27, 105, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card--popular {
    background: var(--plum-dark);
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    outline: 2px solid var(--mint);
    border: none;
}

@media (min-width: 768px) {
    .pricing-card--popular { transform: translateY(-0.5rem); }
}

.pricing-card--popular:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-card .desc {
    margin-top: 0.375rem;
    font-size: 0.875rem;
}

.pricing-card .desc--default { color: rgba(45, 27, 105, 0.45); }
.pricing-card .desc--popular { color: rgba(255, 255, 255, 0.5); }

.pricing-price {
    margin: 1.5rem 0;
}

.pricing-price .amount {
    font-size: 2.25rem;
    font-weight: 700;
}

.pricing-price .period { font-size: 0.875rem; }
.pricing-price .period--default { color: rgba(45, 27, 105, 0.4); }
.pricing-price .period--popular { color: rgba(255, 255, 255, 0.5); }

.pricing-price .setup { font-size: 0.875rem; margin-top: 0.25rem; }
.pricing-price .setup--default { color: rgba(45, 27, 105, 0.35); }
.pricing-price .setup--popular { color: rgba(255, 255, 255, 0.4); }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-feature span { font-size: 0.875rem; line-height: 1.4; }
.pricing-feature .text--default { color: rgba(45, 27, 105, 0.65); }
.pricing-feature .text--popular { color: rgba(255, 255, 255, 0.8); }

.pricing-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition);
}

.pricing-btn--default {
    background: var(--plum);
    color: var(--white);
}

.pricing-btn--default:hover {
    background: var(--plum-dark);
}

.pricing-btn--popular {
    background: var(--mint);
    color: var(--plum-dark);
}

.pricing-btn--popular:hover {
    background: rgba(45, 212, 191, 0.9);
    box-shadow: 0 10px 15px -3px rgba(45, 212, 191, 0.2);
}

.pricing-compare {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.45);
}

.pricing-compare a {
    color: var(--mint);
    font-weight: 500;
}

.pricing-compare a:hover {
    text-decoration: underline;
}

/* ── Trust Signals ── */
.trust-section {
    background: var(--mint-light);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .trust-section { padding: 5rem 0; }
}

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

@media (min-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
    text-align: center;
}

.trust-item .title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--plum-dark);
}

@media (min-width: 640px) {
    .trust-item .title { font-size: 1.25rem; }
}

.trust-item .detail {
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.45);
    margin-top: 0.25rem;
}

/* ── CTA Sections ── */
.cta-dark {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom right, var(--plum-dark), var(--plum), var(--plum-dark));
}

@media (min-width: 640px) {
    .cta-dark { padding: 7rem 0; }
}

.cta-dark .cta-inner {
    position: relative;
}

.cta-dark h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
}

@media (min-width: 640px) {
    .cta-dark h2 { font-size: 2.25rem; }
}

.cta-dark p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-dark .btn-primary {
    margin-top: 2rem;
}

.cta-light {
    background: var(--mint-light);
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-light { padding: 5rem 0; }
}

.cta-light h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
}

.cta-light p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(45, 27, 105, 0.55);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-light .btn-plum {
    margin-top: 2rem;
}

/* ── Page Headers ── */
.page-header {
    background: var(--cream);
    padding: 8rem 0 4rem;
}

@media (min-width: 640px) {
    .page-header { padding: 10rem 0 5rem; }
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--plum-dark);
}

@media (min-width: 640px) {
    .page-header h1 { font-size: 3rem; }
}

.page-header .subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(45, 27, 105, 0.55);
    line-height: 1.6;
    max-width: 48rem;
}

/* ── Services: Detailed Package Cards ── */
.packages-section {
    background: var(--white);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .packages-section { padding: 5rem 0; }
}

.packages-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.package-card {
    border-radius: var(--radius);
    padding: 2rem;
}

@media (min-width: 640px) {
    .package-card { padding: 2.5rem; }
}

.package-card--default {
    background: var(--cream);
    border: 1px solid rgba(45, 27, 105, 0.1);
}

.package-card--popular {
    background: var(--plum-dark);
    color: var(--white);
    outline: 2px solid var(--mint);
}

.package-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .package-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.package-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.package-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .package-card h2 { font-size: 1.875rem; }
}

.package-popular-badge {
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-desc {
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

.package-desc--default { color: rgba(45, 27, 105, 0.5); }
.package-desc--popular { color: rgba(255, 255, 255, 0.55); }

.package-pricing {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .package-pricing { text-align: right; }
}

.package-price {
    font-size: 2.25rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .package-price { font-size: 3rem; }
}

.package-period { font-size: 1.125rem; }
.package-period--default { color: rgba(45, 27, 105, 0.35); }
.package-period--popular { color: rgba(255, 255, 255, 0.45); }

.package-setup { font-size: 0.875rem; margin-top: 0.25rem; }
.package-setup--default { color: rgba(45, 27, 105, 0.4); }
.package-setup--popular { color: rgba(255, 255, 255, 0.4); }

.package-requirement { font-size: 0.75rem; margin-top: 0.25rem; }
.package-requirement--default { color: rgba(45, 27, 105, 0.3); }
.package-requirement--popular { color: rgba(255, 255, 255, 0.3); }

.package-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .package-features { grid-template-columns: repeat(2, 1fr); }
}

.package-features h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--mint);
}

.package-features .not-included-heading--default { color: rgba(45, 27, 105, 0.3); }
.package-features .not-included-heading--popular { color: rgba(255, 255, 255, 0.35); }

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item .dash-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(45, 27, 105, 0.2);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item .dash-icon--popular {
    color: rgba(255, 255, 255, 0.2);
}

.feature-item span { font-size: 0.875rem; }
.feature-item .text--default { color: rgba(45, 27, 105, 0.65); }
.feature-item .text--popular { color: rgba(255, 255, 255, 0.8); }
.feature-item .text-not-included--default { color: rgba(45, 27, 105, 0.3); }
.feature-item .text-not-included--popular { color: rgba(255, 255, 255, 0.35); }

.package-card .btn-primary,
.package-card .btn-plum-sm {
    margin-top: 2rem;
}

/* ── Comparison Table ── */
.comparison-section {
    background: var(--cream);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .comparison-section { padding: 5rem 0; }
}

.comparison-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .comparison-section h2 { font-size: 2.25rem; }
}

.comparison-table-wrap {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.comparison-table-scroll {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.comparison-table thead tr {
    border-bottom: 2px solid rgba(45, 27, 105, 0.1);
}

.comparison-table th {
    padding: 1.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-dark);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
    width: 40%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
    width: 20%;
}

.comparison-table th .price {
    font-weight: 400;
    color: rgba(45, 27, 105, 0.35);
    margin-top: 0.125rem;
}

.comparison-table th.highlight-col {
    background: rgba(45, 212, 191, 0.05);
}

.comparison-table th.highlight-col .plan-name {
    font-weight: 600;
    color: var(--mint);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(45, 27, 105, 0.05);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
}

.comparison-table td:first-child {
    padding-left: 1.5rem;
    color: rgba(45, 27, 105, 0.65);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table td.highlight-col {
    background: rgba(45, 212, 191, 0.05);
}

.comparison-table td.bold-cell {
    font-weight: 500;
}

.comparison-table .table-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--mint);
    display: inline-block;
    vertical-align: middle;
}

.comparison-table .table-dash {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(45, 27, 105, 0.15);
    display: inline-block;
    vertical-align: middle;
}

.comparison-table .table-text {
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.65);
}

/* ── FAQ Accordion ── */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .faq-section { padding: 5rem 0; }
}

.faq-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .faq-section h2 { font-size: 2.25rem; }
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(45, 27, 105, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--plum-dark);
    padding-right: 2rem;
    transition: color var(--transition);
}

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

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(45, 27, 105, 0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding-bottom: 1.25rem;
    color: rgba(45, 27, 105, 0.55);
    line-height: 1.6;
}

/* ── About: Story ── */
.story-section {
    background: var(--white);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .story-section { padding: 6rem 0; }
}

.story-content {
    max-width: 48rem;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 1.5rem;
}

.story-content .prose {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(45, 27, 105, 0.65);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* ── About: Personal Touch ── */
.personal-section {
    background: var(--cream);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .personal-section { padding: 6rem 0; }
}

.personal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .personal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.personal-grid h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 1.5rem;
}

.personal-grid .text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(45, 27, 105, 0.65);
    line-height: 1.6;
}

.metrics-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 27, 105, 0.05);
}

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

.metrics-row .label {
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.45);
}

.metrics-row .value {
    font-weight: 600;
    color: var(--plum-dark);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .metrics-row .value { font-size: 1rem; }
}

/* ── About: Tech Stack ── */
.tech-section {
    background: var(--white);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .tech-section { padding: 6rem 0; }
}

.tech-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.tech-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--plum-dark);
}

.tech-header p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: rgba(45, 27, 105, 0.55);
}

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

@media (min-width: 640px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.tech-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.tech-card:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tech-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.55);
    line-height: 1.6;
}

/* ── Contact: Form & Sidebar ── */
.contact-section {
    background: var(--white);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .contact-section { padding: 5rem 0; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}

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

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum-dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--mint);
}

.form-group label .optional {
    color: rgba(45, 27, 105, 0.3);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 27, 105, 0.15);
    background: rgba(250, 245, 255, 0.5);
    color: var(--plum-dark);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-input::placeholder {
    color: rgba(45, 27, 105, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
}

.form-submit {
    background: var(--mint);
    color: var(--plum-dark);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.form-submit:hover {
    background: rgba(45, 212, 191, 0.9);
    box-shadow: 0 10px 15px -3px rgba(45, 212, 191, 0.2);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success State */
.form-success {
    background: var(--mint-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .form-success { padding: 3rem; }
}

.form-success-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(45, 212, 191, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.form-success-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--mint);
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-dark);
}

.form-success p {
    margin-top: 0.5rem;
    color: rgba(45, 27, 105, 0.55);
}

.form-success .reset-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--mint);
    font-weight: 500;
    cursor: pointer;
}

.form-success .reset-link:hover {
    text-decoration: underline;
}

/* Sidebar Cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    border-radius: var(--radius);
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .sidebar-card { padding: 2rem; }
}

.sidebar-card--cream {
    background: var(--cream);
}

.sidebar-card--dark {
    background: var(--plum-dark);
    color: var(--white);
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.sidebar-card--dark h3 {
    margin-bottom: 0.75rem;
}

.sidebar-card--dark p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-detail + .contact-detail {
    margin-top: 1.25rem;
}

.contact-detail svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: rgba(45, 27, 105, 0.4);
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail .value {
    color: var(--plum-dark);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: var(--mint);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-row .day {
    font-size: 0.875rem;
    color: rgba(45, 27, 105, 0.5);
}

.hours-row .time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum-dark);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in[data-delay="1"] { transition-delay: 100ms; }
.fade-in[data-delay="2"] { transition-delay: 200ms; }
.fade-in[data-delay="3"] { transition-delay: 300ms; }
.fade-in[data-delay="4"] { transition-delay: 400ms; }
.fade-in[data-delay="5"] { transition-delay: 500ms; }
.fade-in[data-delay="6"] { transition-delay: 600ms; }

/* ── 404 Page ── */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    padding: 8rem 1rem 4rem;
}

.page-404 h1 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--plum-dark);
    line-height: 1;
}

.page-404 p {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: rgba(45, 27, 105, 0.55);
}

.page-404 .btn-primary {
    margin-top: 2rem;
}

/* ── Generic Page ── */
.page-content {
    padding: 8rem 0 4rem;
}

@media (min-width: 640px) {
    .page-content { padding: 10rem 0 5rem; }
}

.page-content .entry-content {
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(45, 27, 105, 0.7);
}

.page-content .entry-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-dark);
    margin: 2rem 0 1rem;
}

.page-content .entry-content p + p {
    margin-top: 1rem;
}

.page-content .entry-content a {
    color: var(--mint);
    text-decoration: underline;
}

/* ── Responsive: Mobile Adjustments ── */
@media (max-width: 767px) {
    .nav-desktop { display: none; }

    .pricing-card--popular {
        transform: none;
    }
}
