/* ============================================
   JV Tax Service — Editorial Bold Design
   Emerald Green + Cream Palette
   ============================================ */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #fefdf8;
    --cream-100: #fef9ee;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --warm-900: #1c1917;
    --warm-800: #292524;
    --warm-700: #44403c;
    --warm-600: #57534e;
    --warm-500: #78716c;
    --warm-400: #a8a29e;
    --warm-300: #d6d3d1;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(6, 78, 59, 0.06);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12);
    --shadow-xl: 0 20px 60px rgba(6, 78, 59, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--sans);
    color: var(--warm-800);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--emerald-900);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--emerald-800);
    background: var(--emerald-800);
    color: var(--cream-50);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.nav-logo-text {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--warm-900);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-700);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--emerald-800) !important;
    color: var(--cream-50) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--emerald-700) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--warm-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 78, 59, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-link {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream-100);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--emerald-400);
}

.mobile-menu-cta {
    font-family: var(--sans);
    font-size: 1rem;
    background: var(--cream-50);
    color: var(--emerald-900);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 8px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(6, 95, 70, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(6, 78, 59, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--emerald-600);
}

.hero-headline {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--emerald-900);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-800);
    border: 2px solid var(--emerald-800);
}

.btn-outline:hover {
    background: var(--emerald-800);
    color: var(--cream-50);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--emerald-900);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(254, 253, 248, 0.4);
}

.btn-outline-white:hover {
    background: rgba(254, 253, 248, 0.1);
    border-color: var(--cream-50);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero-card-main {
    width: 100%;
    position: relative;
}

.hero-card-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.hero-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.9), transparent);
    color: var(--cream-100);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-card-float {
    position: absolute;
    padding: 16px 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    z-index: 2;
}

.hero-card-refund {
    bottom: -20px;
    left: -30px;
    border-left: 4px solid var(--emerald-500);
}

.hero-card-years {
    top: 30px;
    right: -20px;
    border-left: 4px solid var(--cream-300);
}

.hero-card-clients {
    bottom: 80px;
    right: -40px;
    border-left: 4px solid var(--emerald-300);
}

.float-stat-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--emerald-900);
    line-height: 1;
    margin-bottom: 4px;
}

.float-stat-label {
    font-size: 0.75rem;
    color: var(--warm-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--emerald-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-600);
    line-height: 1.7;
}

/* --- Services --- */
.services {
    padding: 100px 24px;
    background: var(--cream-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(6, 95, 70, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--cream-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald-800);
    color: var(--cream-50);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 10px;
    font-family: var(--serif);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--warm-600);
    line-height: 1.65;
}

/* --- About --- */
.about {
    padding: 100px 24px;
    background: var(--cream-100);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--emerald-800);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    max-width: 480px;
}

.about-body {
    font-size: 1.05rem;
    color: var(--warm-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-300);
}

.about-stat {
    flex: 1;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--emerald-800);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--warm-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-300);
}

/* --- Why Us --- */
.why-us {
    padding: 100px 24px;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-light {
    position: relative;
    z-index: 1;
}

.section-eyebrow-light {
    color: var(--emerald-400);
}

.section-title-light {
    color: var(--cream-50);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(254, 253, 248, 0.06);
    border: 1px solid rgba(254, 253, 248, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(254, 253, 248, 0.1);
    transform: translateY(-4px);
    border-color: rgba(254, 253, 248, 0.2);
}

.why-card-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 12px;
    font-family: var(--serif);
}

.why-card-desc {
    font-size: 0.95rem;
    color: rgba(254, 253, 248, 0.65);
    line-height: 1.7;
}

/* --- Process --- */
.process {
    padding: 100px 24px;
    background: var(--cream-50);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px 20px;
}

.process-step-marker {
    width: 56px;
    height: 56px;
    background: var(--emerald-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--cream-50);
    gap: 0;
    position: relative;
}

.process-step-num {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--cream-50);
}

.process-step-marker svg {
    color: var(--cream-50);
}

.process-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 10px;
    font-family: var(--serif);
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--warm-600);
    line-height: 1.65;
}

.process-step-connector {
    display: flex;
    align-items: center;
    color: var(--emerald-400);
    flex-shrink: 0;
    margin-top: 28px;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 24px;
    background: var(--cream-200);
    border-top: 1px solid var(--cream-300);
    border-bottom: 1px solid var(--cream-300);
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--emerald-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.05rem;
    color: var(--warm-600);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 100px 24px;
    background: var(--cream-50);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-400);
    font-weight: 600;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--warm-800);
    font-weight: 500;
    line-height: 1.5;
}

.contact-detail-value a:hover {
    color: var(--emerald-700);
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6, 95, 70, 0.06);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 28px;
    font-family: var(--serif);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-700);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--warm-300);
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--warm-900);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
    color: var(--warm-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--cream-100);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--warm-900);
    padding: 72px 24px 32px;
    color: rgba(254, 253, 248, 0.7);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.1rem;
    background: var(--emerald-700);
    color: var(--cream-50);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream-50);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.5);
    max-width: 280px;
}

.footer-col-title {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-50);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.5);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.4);
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(254, 253, 248, 0.3);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
    }

    .hero-card-refund {
        left: 0;
    }

    .hero-card-clients {
        right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap img {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-card-main img {
        height: 260px;
    }

    .hero-card-float {
        display: none;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-stat-divider {
        width: 48px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services, .about, .why-us, .process, .contact {
        padding: 72px 20px;
    }
}
