/* ============================================
   PRIMUS MORTGAGE — Powered by Coast2Coast
   Gold & Black Immersive Experience
============================================ */

:root {
    --black: #0a0a0a;
    --black-2: #141210;
    --black-3: #1c1914;
    --gold-light: #fff5c2;
    --gold: #f5c84a;
    --gold-dark: #c9972b;
    --gold-deep: #8a6312;
    --silver: #e8e8e8;
    --text: #ecebe6;
    --text-dim: #a39e90;
    --radius: 18px;
    --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========== BACKGROUND CANVAS ========== */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    pointer-events: none;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--gold-dark), transparent 70%);
    top: -10%; left: -15%;
    animation: drift1 25s ease-in-out infinite;
}
.orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--gold-deep), transparent 70%);
    bottom: -20%; right: -20%;
    animation: drift2 30s ease-in-out infinite;
}

@keyframes drift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes drift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-100px, -80px) scale(0.9); }
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 36px);
    max-width: 1240px;
    transition: all .4s var(--ease);
}
.nav.scrolled .nav-inner {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(245,200,74,0.2);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(10,10,10,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    transition: all .4s var(--ease);
}
.brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(245,200,74,0.35));
}
.brand-crown {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(245,200,74,0.35));
}
.brand-text em {
    font-size: 0.9em;
    margin-left: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color .3s var(--ease);
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 20px rgba(245,200,74,0.3);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,200,74,0.5);
}

.menu-toggle {
    display: none;
    background: none; border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    transition: all .3s var(--ease);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 28px 80px;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.35;
    filter: saturate(1.1) contrast(1.05);
}
.hero-video:not([src])[src=""],
.hero-video:empty { display: none; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 60%, var(--black) 100%);
    z-index: -1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(245,200,74,0.1), transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(138,99,18,0.15), transparent 60%);
    z-index: -1;
}
.shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(245,200,74,0.05) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-content {
    text-align: center;
    max-width: 960px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    position: relative;
    width: 220px; height: 220px;
    margin: 0 auto 28px;
    animation: float 6s ease-in-out infinite;
}
.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 45px rgba(245,200,74,0.45)) drop-shadow(0 0 30px rgba(245,200,74,0.25));
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.logo-shine {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(245,200,74,0.35), transparent 60%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
.crown-wrap {
    position: relative;
    width: 100%; height: 100%;
    filter: drop-shadow(0 8px 30px rgba(245,200,74,0.4));
}
.crown-svg {
    width: 100%; height: 100%;
    animation: gentle-rock 5s ease-in-out infinite;
}
@keyframes gentle-rock {
    0%,100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.hero-tag {
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(245,200,74,0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245,200,74,0.05);
}
.hero-tag strong {
    color: var(--silver);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.4rem, 6.5vw, 5rem);
    margin-bottom: 24px;
}
.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-up 1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }

@keyframes reveal-up {
    to { opacity: 1; transform: translateY(0); }
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(245,200,74,0.3));
}

.hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: reveal-up 1s var(--ease) 0.4s forwards;
}

.hero-cta {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: reveal-up 1s var(--ease) 0.6s forwards;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(245,200,74,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(245,200,74,0.45), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(245,200,74,0.4);
}
.btn-ghost:hover {
    background: rgba(245,200,74,0.08);
    border-color: var(--gold);
    color: var(--gold);
}
.btn-block { width: 100%; }

/* ========== STATS ========== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 0;
    border-top: 1px solid rgba(245,200,74,0.15);
    border-bottom: 1px solid rgba(245,200,74,0.15);
    opacity: 0;
    animation: reveal-up 1s var(--ease) 0.8s forwards;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
    0%,100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}
.mouse {
    width: 22px; height: 36px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}
.wheel {
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: var(--gold);
    border-radius: 2px;
    animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
    0%,100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.2; }
}

/* ========== SECTION HEADS ========== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 18px;
    background: rgba(245,200,74,0.1);
    border: 1px solid rgba(245,200,74,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 18px;
}
.section-head p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ========== REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    position: relative;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.card {
    position: relative;
    padding: 38px 30px;
    background: linear-gradient(145deg, rgba(28,25,20,0.8), rgba(20,18,16,0.6));
    border: 1px solid rgba(245,200,74,0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all .5s var(--ease);
    overflow: hidden;
    transform-style: preserve-3d;
}
.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(245,200,74,0.15), transparent 40%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(245,200,74,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,74,0.2);
}
.card:hover .card-glow { opacity: 1; }

.card-icon {
    width: 60px; height: 60px;
    margin-bottom: 24px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(245,200,74,0.15), rgba(138,99,18,0.1));
    border: 1px solid rgba(245,200,74,0.3);
    border-radius: 14px;
    color: var(--gold);
    transition: all .4s var(--ease);
}
.card:hover .card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}
.card p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 0.96rem;
}
.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--text);
}
.card-list li::before {
    content: '♛';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ========== CALCULATOR ========== */
.calculator {
    padding: 120px 0;
    position: relative;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.calc-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0 18px;
}
.calc-intro p {
    color: var(--text-dim);
    margin-bottom: 30px;
}
.calc-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(245,200,74,0.05);
    border: 1px solid rgba(245,200,74,0.2);
    border-radius: 14px;
}
.calc-badge {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    flex-shrink: 0;
}
.calc-highlight strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 2px;
}
.calc-highlight span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.calc-card {
    padding: 36px;
    background: linear-gradient(145deg, rgba(28,25,20,0.9), rgba(15,13,11,0.85));
    border: 1px solid rgba(245,200,74,0.2);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,200,74,0.1);
}
.calc-result {
    text-align: center;
    padding: 24px 0 28px;
    border-bottom: 1px solid rgba(245,200,74,0.15);
    margin-bottom: 28px;
}
.calc-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.calc-amount {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    transition: all .3s var(--ease);
}
.calc-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.calc-breakdown > div {
    padding: 14px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.calc-breakdown span {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.calc-breakdown strong {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--gold);
}

.calc-controls { margin-bottom: 28px; }

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.field label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-dim);
    font-weight: 500;
}
.field label span {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Range */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(245,200,74,0.15);
    border-radius: 100px;
    outline: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 2px solid var(--black);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 0 4px rgba(245,200,74,0.2), 0 4px 12px rgba(245,200,74,0.4);
    transition: all .2s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(245,200,74,0.25), 0 6px 20px rgba(245,200,74,0.5);
}
input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 2px solid var(--black);
    border-radius: 50%;
    cursor: grab;
}

.term-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.term-btn {
    padding: 12px;
    background: rgba(245,200,74,0.06);
    border: 1px solid rgba(245,200,74,0.2);
    border-radius: 10px;
    color: var(--text-dim);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.term-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.term-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(245,200,74,0.3);
}

/* Form inputs */
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,200,74,0.15);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all .3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(245,200,74,0.04);
    box-shadow: 0 0 0 4px rgba(245,200,74,0.1);
}
.field textarea { resize: vertical; min-height: 100px; font-family: 'Inter', sans-serif; }
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%23f5c84a' d='M7 8L0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}

/* ========== PROCESS TIMELINE ========== */
.process {
    padding: 120px 0;
    position: relative;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(245,200,74,0.4), rgba(245,200,74,0.4), transparent);
    transform: translateX(-50%);
}
.step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
    padding: 0 20px;
}
.step:nth-child(even) { flex-direction: row-reverse; }
.step:nth-child(even) .step-content { text-align: right; }
.step-num {
    flex-shrink: 0;
    width: 72px; height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--black-2), var(--black-3));
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    box-shadow: 0 0 0 6px var(--black), 0 10px 30px rgba(245,200,74,0.2);
    position: relative;
    z-index: 2;
    transition: all .4s var(--ease);
}
.step.visible .step-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    transform: scale(1.05);
}
.step-content {
    flex: 1;
    padding: 22px 28px;
    background: rgba(28,25,20,0.5);
    border: 1px solid rgba(245,200,74,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: all .4s var(--ease);
}
.step:hover .step-content {
    border-color: rgba(245,200,74,0.4);
    transform: translateY(-3px);
}
.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.step-content p {
    color: var(--text-dim);
    font-size: 0.96rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245,200,74,0.08), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(138,99,18,0.08), transparent 50%);
}
.testi-wrap {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.testi-track {
    position: relative;
    min-height: 280px;
}
.testi {
    position: absolute;
    inset: 0;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all .6s var(--ease);
    pointer-events: none;
    background: linear-gradient(145deg, rgba(28,25,20,0.6), rgba(15,13,11,0.4));
    border: 1px solid rgba(245,200,74,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}
.testi.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.stars {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 22px;
    filter: drop-shadow(0 0 10px rgba(245,200,74,0.5));
}
.testi blockquote {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 22px;
    font-style: italic;
}
.testi cite {
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.92rem;
}
.testi cite strong { color: var(--gold-light); margin-right: 4px; }

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.testi-btn {
    width: 44px; height: 44px;
    background: rgba(245,200,74,0.08);
    border: 1px solid rgba(245,200,74,0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s var(--ease);
    padding-bottom: 4px;
}
.testi-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}
.testi-dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(245,200,74,0.25);
    cursor: pointer;
    transition: all .3s var(--ease);
}
.dot.active {
    width: 30px;
    border-radius: 4px;
    background: var(--gold);
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0 18px;
}
.contact-info > p {
    color: var(--text-dim);
    margin-bottom: 36px;
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(28,25,20,0.4);
    border: 1px solid rgba(245,200,74,0.12);
    border-radius: 14px;
    transition: all .3s var(--ease);
}
.contact-list li:hover {
    border-color: rgba(245,200,74,0.35);
    transform: translateX(4px);
}
.c-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(245,200,74,0.15), rgba(138,99,18,0.1));
    border-radius: 12px;
    flex-shrink: 0;
}
.contact-list strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.contact-list span {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.contact-form {
    position: relative;
    padding: 36px;
    background: linear-gradient(145deg, rgba(28,25,20,0.8), rgba(15,13,11,0.6));
    border: 1px solid rgba(245,200,74,0.2);
    border-radius: 22px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-fine {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
}
.form-success {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(28,25,20,0.98), rgba(15,13,11,0.98));
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s var(--ease);
}
.form-success.show {
    opacity: 1;
    pointer-events: auto;
}
.success-crown {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    animation: pulse 2s ease-in-out infinite;
}
.form-success h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.form-success p {
    color: var(--text-dim);
    max-width: 400px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
    padding: 80px 0 30px;
    border-top: 1px solid rgba(245,200,74,0.15);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand {
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.footer-tag {
    color: var(--gold);
    font-size: 0.92rem;
    margin-bottom: 16px;
}
.footer-fine {
    color: var(--text-dim);
    font-size: 0.82rem;
    max-width: 400px;
    line-height: 1.6;
}
.footer h4 {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer ul a {
    color: var(--text-dim);
    font-size: 0.92rem;
    transition: color .3s var(--ease);
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(245,200,74,0.1);
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .calc-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        top: 70px; left: 0; right: 0;
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(20px);
        border-radius: 18px;
        border: 1px solid rgba(245,200,74,0.15);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all .3s var(--ease);
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .menu-toggle { display: flex; }

    .step, .step:nth-child(even) { flex-direction: column; text-align: center; }
    .step:nth-child(even) .step-content { text-align: center; }
    .timeline-line { left: 36px; }
    .step { flex-direction: row; padding-left: 0; }
    .step .step-content { text-align: left; }
    .step:nth-child(even) { flex-direction: row; }
    .step:nth-child(even) .step-content { text-align: left; }

    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .calc-breakdown { grid-template-columns: 1fr; }
    .hero-stats { padding: 20px 0; gap: 16px; }
    .services, .calculator, .process, .testimonials, .contact { padding: 80px 0; }
}
