/* ============================================ RESET & BASE ============================================ */ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); overflow-x: hidden; line-height: 1.6; } body.loading { overflow: hidden; } a { color: inherit; text-decoration: none; } button { font-family: inherit; cursor: pointer; border: none; background: none; } img { max-width: 100%; display: block; } ul { list-style: none; } /* ============================================ CUSTOM PROPERTIES ============================================ */ :root { --color-bg: #0A0806; --color-bg-elevated: #12100D; --color-bg-card: #171411; --color-espresso: #321D0F; --color-brown: #845833; --color-cream: #F3E2B2; --color-rich-brown: #6B3E1E; --color-white: #FFFFFF; --color-gold: #D4A574; --color-light-gold: #E8C88A; --color-text: #E8E0D8; /* --color-text-muted: #8A7E72; */ --color-text-muted: #dfccb9; --color-text-dim: #5A5048; --color-border: rgba(243, 226, 178, 0.07); --color-border-hover: rgba(243, 226, 178, 0.15); --font-display: 'Syne', sans-serif; --font-body: 'Manrope', sans-serif; --font-accent: 'Cormorant Garamond', serif; --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1); --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1); --max-width: 1320px; --section-pad: clamp(80px, 12vh, 160px); --header-h: 80px; } /* ============================================ GRAIN OVERLAY ============================================ */ body::after { content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.025; 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.9' 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: 256px 256px; } /* ============================================ SCROLL PROGRESS BAR ============================================ */ .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--color-brown), var(--color-cream), var(--color-gold)); transform-origin: left; transform: scaleX(0); z-index: 10001; will-change: transform; } /* ============================================ CUSTOM CURSOR ============================================ */ .cursor-dot { position: fixed; top: -5px; left: -5px; width: 10px; height: 10px; background: var(--color-cream); border-radius: 50%; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), top 0.3s var(--ease-out-expo), left 0.3s var(--ease-out-expo); will-change: transform; } .cursor-dot.hovering { width: 50px; height: 50px; top: -25px; left: -25px; } @media (pointer: coarse) { .cursor-dot { display: none; } } /* ============================================ PRELOADER ============================================ */ .preloader { position: fixed; inset: 0; z-index: 10002; background: var(--color-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; } .preloader.hidden { opacity: 0; visibility: hidden; } .preloader-logo { width: 80px; height: 80px; animation: preloaderPulse 1.5s ease-in-out infinite; } .preloader-bar { width: 120px; height: 2px; background: var(--color-border); border-radius: 2px; margin-top: 32px; overflow: hidden; } .preloader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--color-brown), var(--color-cream)); border-radius: 2px; transition: width 0.3s ease; } @keyframes preloaderPulse { 0%, 100% { opacity: 0.4; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } } /* ============================================ CONTAINER & LAYOUT ============================================ */ .container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); } .section-pad { padding: var(--section-pad) 0; } /* ============================================ SECTION HEADERS ============================================ */ .section-eyebrow { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-brown); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; } .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--color-brown); } .section-eyebrow--center { justify-content: center; } .section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; color: var(--color-white); margin-bottom: 20px; } .section-subtitle { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--color-text-muted); max-width: 560px; line-height: 1.7; } .section-subtitle--center { margin: 0 auto; } .text-center { text-align: center; } /* ============================================ REVEAL ANIMATIONS ============================================ */ .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); } .reveal.revealed { opacity: 1; transform: translateY(0); } .reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .reveal-delay-3 { transition-delay: 0.3s; } .reveal-delay-4 { transition-delay: 0.4s; } .reveal-delay-5 { transition-delay: 0.5s; } /* ============================================ NAVIGATION ============================================ */ .nav { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 1000; transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease; } .nav.scrolled { background: rgba(10, 8, 6, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--color-border); } .nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); height: 100%; display: flex; align-items: center; justify-content: space-between; } .nav-logo img { height: 60px; width: auto; } .nav-links { display: flex; align-items: center; gap: 36px; } .nav-link { font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); transition: color 0.3s ease; position: relative; } .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--color-cream); transition: width 0.3s var(--ease-out-expo); } .nav-link:hover, .nav-link.active { color: var(--color-cream); } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .nav-lang { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(212, 165, 116, 0.3); color: var(--color-gold); transition: all 0.3s ease; } .nav-lang:hover { border-color: var(--color-gold); background: rgba(212, 165, 116, 0.1); } .nav-cta { font-size: 0.85rem; font-weight: 600; padding: 10px 24px; border-radius: 100px; background: var(--color-cream); color: var(--color-espresso); transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease; } .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(243, 226, 178, 0.2); } /* Mobile nav */ .nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; } .nav-mobile-toggle span { width: 24px; height: 1.5px; background: var(--color-text); transition: transform 0.3s ease, opacity 0.3s ease; display: block; } .nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); } .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; } .nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); } .mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(10, 8, 6, 0.97); backdrop-filter: blur(30px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; } .mobile-menu.open { opacity: 1; visibility: visible; } .mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--color-text); transition: color 0.3s ease; } .mobile-menu a:hover { color: var(--color-cream); } .mobile-menu .mobile-lang { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; margin-top: 16px; padding: 8px 24px; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 100px; color: var(--color-gold); display: inline-block; } /* ============================================ HERO ============================================ */ .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; } .hero-canvas { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; } .hero-gradient { position: absolute; inset: -20% 0; z-index: 1; background: url('assets/bg2.png') center top no-repeat; background-size: cover; will-change: transform; } .hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, transparent, var(--color-bg)); z-index: 2; } .hero-content { position: relative; z-index: 3; max-width: 790px; } .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 28px; padding: 8px 18px; border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 100px; background: rgba(212, 165, 116, 0.05); } .hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); animation: dotPulse 2s ease-in-out infinite; } @keyframes dotPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } } .hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; color: var(--color-white); margin-bottom: 28px; letter-spacing: -0.02em; } .hero h1 .accent { background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold) 50%, var(--color-brown) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--color-text-muted); max-width: 520px; line-height: 1.8; margin-bottom: 44px; } .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; } /* ============================================ BUTTONS ============================================ */ .btn-primary { display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 700; padding: 16px 36px; border-radius: 100px; background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-gold) 100%); color: var(--color-espresso); transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease; position: relative; overflow: hidden; } .btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--color-light-gold) 0%, var(--color-white) 100%); opacity: 0; transition: opacity 0.3s ease; } .btn-primary:hover::before { opacity: 1; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(243, 226, 178, 0.25); } .btn-primary span, .btn-primary svg { position: relative; z-index: 1; } .btn-secondary { display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; padding: 16px 36px; border-radius: 100px; border: 1px solid var(--color-border-hover); color: var(--color-text); transition: all 0.3s var(--ease-out-expo); } .btn-secondary:hover { border-color: var(--color-cream); color: var(--color-cream); transform: translateY(-2px); background: rgba(243, 226, 178, 0.04); } .btn-secondary svg { width: 18px; height: 18px; } /* Scroll indicator */ .hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: scrollBounce 2s ease-in-out infinite; } .hero-scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-dim); } .hero-scroll-indicator svg { color: var(--color-text-dim); } @keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } } /* ============================================ TRUSTED BY / MARQUEE ============================================ */ .trusted { padding: 60px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; } .trusted-label { text-align: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-dim); margin-bottom: 32px; } .marquee-container { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); } .marquee-track { display: flex; align-items: center; gap: 80px; animation: marquee 35s linear infinite; width: max-content; } .marquee-item { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--color-text-dim); white-space: nowrap; opacity: 0.5; transition: opacity 0.3s ease; } .marquee-item:hover { opacity: 0.9; } @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* ============================================ FEATURES ============================================ */ .features-header { margin-bottom: clamp(48px, 6vw, 80px); } .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .feature-card { position: relative; padding: 40px 32px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border); overflow: hidden; transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease; cursor: default; } .feature-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient( 500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(243, 226, 178, 0.04), transparent 60% ); opacity: 0; transition: opacity 0.4s ease; } .feature-card:hover::before { opacity: 1; } .feature-card:hover { border-color: var(--color-border-hover); } .feature-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(132, 88, 51, 0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--color-gold); } .feature-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; } .feature-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-white); margin-bottom: 12px; } .feature-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; } /* ============================================ HOW IT WORKS ============================================ */ .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: clamp(48px, 6vw, 80px); position: relative; } .how-grid::before { content: ''; position: absolute; top: 56px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 1px; background: linear-gradient(90deg, var(--color-border), var(--color-brown), var(--color-border)); } .how-step { text-align: center; position: relative; } .how-step-num { font-family: var(--font-accent); font-size: 4rem; font-weight: 600; color: rgba(132, 88, 51, 0.15); line-height: 1; margin-bottom: 24px; } .how-step-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--color-bg-card); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--color-cream); position: relative; z-index: 1; } .how-step-icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; } .how-step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--color-white); margin-bottom: 12px; } .how-step-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; max-width: 300px; margin: 0 auto; } /* ============================================ STATS ============================================ */ .stats { position: relative; overflow: hidden; } .stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(132, 88, 51, 0.06) 0%, transparent 70%); } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; } .stat-item { text-align: center; } .stat-number { font-family: var(--font-accent); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 600; color: var(--color-cream); line-height: 1; margin-bottom: 8px; } .stat-number .unit { font-size: 0.5em; color: var(--color-gold); } .stat-label { font-size: 0.85rem; font-weight: 500; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; } /* ============================================ DASHBOARD PREVIEW ============================================ */ .dashboard-mockup { position: relative; border-radius: 16px; background: var(--color-bg-card); border: 1px solid var(--color-border); overflow: hidden; margin-top: clamp(48px, 6vw, 80px); } .dashboard-mockup::before { content: ''; position: absolute; inset: -2px; border-radius: 18px; background: linear-gradient(135deg, rgba(132, 88, 51, 0.3), transparent 40%, transparent 60%, rgba(243, 226, 178, 0.15)); z-index: -1; } .dashboard-bar { display: flex; align-items: center; gap: 8px; padding: 16px 20px; background: var(--color-bg-elevated); border-bottom: 1px solid var(--color-border); } .dashboard-dot { width: 10px; height: 10px; border-radius: 50%; } .dashboard-dot:nth-child(1) { background: #FF5F57; } .dashboard-dot:nth-child(2) { background: #FEBC2E; } .dashboard-dot:nth-child(3) { background: #28C840; } .dashboard-url { margin-left: 12px; font-size: 0.75rem; color: var(--color-text-dim); background: rgba(255,255,255, 0.03); padding: 4px 16px; border-radius: 6px; flex: 1; max-width: 300px; } .dashboard-body { display: grid; grid-template-columns: 220px 1fr; min-height: 400px; } .dashboard-sidebar { padding: 20px 16px; border-right: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 4px; } .dashboard-sidebar-item { padding: 10px 14px; border-radius: 8px; font-size: 0.8rem; color: var(--color-text-muted); display: flex; align-items: center; gap: 10px; } .dashboard-sidebar-item.active { background: rgba(132, 88, 51, 0.12); color: var(--color-cream); } .dashboard-sidebar-item svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; } .dashboard-main { padding: 24px; } .dashboard-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; } .dashboard-stat-card { padding: 16px; background: rgba(255,255,255, 0.02); border: 1px solid var(--color-border); border-radius: 10px; } .dashboard-stat-card-label { font-size: 0.7rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; } .dashboard-stat-card-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--color-white); } .dashboard-chart { height: 180px; background: rgba(255,255,255, 0.01); border: 1px solid var(--color-border); border-radius: 10px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 16px; gap: 6px; } .dashboard-chart-bar { flex: 1; background: linear-gradient(to top, var(--color-brown), rgba(132, 88, 51, 0.3)); border-radius: 4px 4px 0 0; min-height: 8px; transition: height 1s var(--ease-out-expo); } .dashboard-glow { position: absolute; inset: -100px; background: radial-gradient(ellipse at 50% 50%, rgba(132, 88, 51, 0.08), transparent 70%); z-index: -1; pointer-events: none; } /* ============================================ PRICING ============================================ */ .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(48px, 6vw, 80px); align-items: start; } .pricing-card { padding: 40px 32px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border); transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease; position: relative; } .pricing-card:hover { transform: translateY(-6px); border-color: var(--color-border-hover); } .pricing-card.featured { border-color: rgba(212, 165, 116, 0.3); background: linear-gradient(180deg, rgba(132, 88, 51, 0.08) 0%, var(--color-bg-card) 40%); } .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: linear-gradient(135deg, var(--color-cream), var(--color-gold)); color: var(--color-espresso); padding: 6px 20px; border-radius: 100px; white-space: nowrap; } .pricing-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-white); margin-bottom: 6px; } .pricing-desc { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 24px; } .pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; } .pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--color-text-muted); } .pricing-value { font-family: var(--font-accent); font-size: 3.5rem; font-weight: 600; color: var(--color-white); line-height: 1; } .pricing-period { font-size: 0.85rem; color: var(--color-text-muted); } .pricing-note { font-size: 0.8rem; color: var(--color-text-dim); margin-bottom: 32px; } .pricing-divider { height: 1px; background: var(--color-border); margin-bottom: 24px; } .pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; } .pricing-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--color-text-muted); } .pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--color-gold); stroke-width: 2; fill: none; margin-top: 2px; } .pricing-btn { display: block; width: 100%; text-align: center; font-size: 0.9rem; font-weight: 700; padding: 14px 24px; border-radius: 12px; border: 1px solid var(--color-border-hover); color: var(--color-text); transition: all 0.3s var(--ease-out-expo); } .pricing-btn:hover { background: rgba(243, 226, 178, 0.05); border-color: var(--color-cream); color: var(--color-cream); } .pricing-btn.primary-btn { background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-gold) 100%); color: var(--color-espresso); border: none; } .pricing-btn.primary-btn:hover { box-shadow: 0 8px 30px rgba(243, 226, 178, 0.2); transform: translateY(-2px); } /* ============================================ TESTIMONIALS ============================================ */ .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(48px, 6vw, 80px); } .testimonial-card { padding: 36px 28px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border); transition: border-color 0.4s ease; } .testimonial-card:hover { border-color: var(--color-border-hover); } .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; } .testimonial-stars svg { width: 16px; height: 16px; fill: var(--color-gold); } .testimonial-text { font-size: 0.95rem; color: var(--color-text); line-height: 1.8; margin-bottom: 28px; font-style: italic; } .testimonial-author { display: flex; align-items: center; gap: 14px; } .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--color-brown), var(--color-espresso)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--color-cream); flex-shrink: 0; } .testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--color-white); } .testimonial-role { font-size: 0.78rem; color: var(--color-text-dim); } /* ============================================ CONTACT SECTION ============================================ */ .contact { position: relative; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; } .contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; } .contact-detail { display: flex; align-items: flex-start; gap: 16px; } .contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(132, 88, 51, 0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-gold); } .contact-detail-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; } .contact-detail-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-dim); margin-bottom: 4px; } .contact-detail-value { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.6; } .contact-detail-link { display: block; transition: color 0.3s ease; } .contact-detail-link:hover { color: var(--color-cream); } /* Contact Form */ .contact-form-wrap { position: relative; padding: 40px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border); } .contact-form { display: flex; flex-direction: column; gap: 20px; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .form-group { display: flex; flex-direction: column; gap: 6px; } .form-label { font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.02em; } .form-input { font-family: var(--font-body); font-size: 0.9rem; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--color-border); background: rgba(255, 255, 255, 0.02); color: var(--color-text); outline: none; transition: border-color 0.3s ease, background 0.3s ease; } .form-input::placeholder { color: var(--color-text-dim); } .form-input:focus { border-color: var(--color-brown); background: rgba(132, 88, 51, 0.04); } .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1.5 5 5 5-5' stroke='%235A5048' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; } .form-select option { background: var(--color-bg-card); color: var(--color-text); } .form-textarea { resize: vertical; min-height: 120px; } .form-submit { align-self: flex-start; margin-top: 4px; } /* Form error state */ .form-error { display: none; font-size: 0.875rem; color: #e57373; padding: 10px 14px; border-radius: 8px; background: rgba(229, 115, 115, 0.08); border: 1px solid rgba(229, 115, 115, 0.15); } .form-error.visible { display: block; } /* Form success state */ .form-success { display: none; text-align: center; padding: 40px 20px; } .form-success.visible { display: block; } .form-success-icon { margin-bottom: 20px; } .form-success-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 8px; } .form-success-text { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; } /* ============================================ POLICY PAGE ============================================ */ .policy-page { padding-top: calc(var(--header-h) + 60px); padding-bottom: 40px; min-height: 80vh; } .policy-container { max-width: 800px; } .policy-header { margin-bottom: 48px; } .policy-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--color-white); line-height: 1.15; margin-top: 12px; } .policy-updated { font-size: 0.9rem; color: var(--color-text-dim); margin-top: 16px; } .policy-body { font-size: 0.95rem; line-height: 1.85; color: var(--color-text-muted); } .policy-section { margin-bottom: 40px; } .policy-section h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--color-white); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(212, 165, 116, 0.12); } .policy-section h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--color-cream); margin-top: 24px; margin-bottom: 10px; } .policy-section p { margin-bottom: 14px; } .policy-section ul { margin-bottom: 14px; padding-left: 20px; list-style: none; } .policy-section ul li { position: relative; padding-left: 16px; margin-bottom: 8px; } .policy-section ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--color-gold); } .policy-section a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s ease; } .policy-section a:hover { color: var(--color-cream); } .policy-contact { margin-top: 16px; padding: 24px; border-radius: 12px; background: var(--color-bg-card); border: 1px solid rgba(212, 165, 116, 0.1); } .policy-contact p { margin-bottom: 6px; } .policy-contact a { color: var(--color-gold); } /* ============================================ FOOTER ============================================ */ .footer { border-top: 1px solid var(--color-border); padding: 64px 0 32px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; } .footer-grid--simple { grid-template-columns: 1fr 1fr; } .footer-brand img { height: 28px; margin-bottom: 16px; } .footer-brand-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.7; max-width: 400px; } .footer-address { display: flex; flex-direction: column; gap: 20px; text-align: right; } .footer-address-block { display: flex; flex-direction: column; gap: 2px; } .footer-address-line { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; } .footer-heading { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--color-white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; } .footer-links { display: flex; flex-direction: column; gap: 12px; } .footer-link { font-size: 0.88rem; color: var(--color-text-muted); transition: color 0.3s ease; } .footer-link:hover { color: var(--color-cream); } .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--color-border); } .footer-copy { font-size: 0.8rem; color: var(--color-text-dim); } .footer-policy-link { color: var(--color-text-dim); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s ease; } .footer-policy-link:hover { color: var(--color-gold); } .footer-socials { display: flex; gap: 16px; } .footer-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); transition: all 0.3s ease; } .footer-social:hover { border-color: var(--color-cream); color: var(--color-cream); background: rgba(243, 226, 178, 0.05); } .footer-social svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; } /* ============================================ RESPONSIVE ============================================ */ @media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .contact-grid { grid-template-columns: 1fr; } .contact-form-wrap { margin-top: 0; } } @media (max-width: 768px) { .nav-links, .nav-cta-wrap { display: none; } .nav-mobile-toggle { display: flex; } .features-grid { grid-template-columns: 1fr; } .how-grid { grid-template-columns: 1fr; gap: 48px; } .how-grid::before { display: none; } .dashboard-body { grid-template-columns: 1fr; } .dashboard-sidebar { display: none; } .dashboard-stats-row { grid-template-columns: repeat(2, 1fr); } .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 28px 20px; } .footer-grid--simple { grid-template-columns: 1fr; } .footer-address { text-align: left; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }