*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'DM Sans', system-ui, sans-serif; background: #FAFAF7; color: #1A1A1A; line-height: 1.6; overflow-x: hidden; } :root { --bg: #FAFAF7; --teal: #0F6E56; --teal-dark: #0A5241; --teal-light: #E6F4EF; --text: #1A1A1A; --muted: #6B7280; --gold: #C9A84C; --gold-bg: #FBF7EE; --white: #FFFFFF; --border: #E5DFD6; --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05); --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05); --shadow-lg: 0 16px 48px rgba(0,0,0,0.09), 0 6px 16px rgba(0,0,0,0.06); --radius: 14px; --radius-lg: 22px; --nav-h: 88px; --pad: clamp(64px, 9vw, 120px); --wrap: min(1180px, 92vw); } .fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94); } .fade-up.visible { opacity: 1; transform: translateY(0); } @media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } } #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); padding: 10px 0; background: rgba(250,250,247,0.82); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(229,223,214,0.5); transition: box-shadow 0.3s; } #navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); } .nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; gap: 0; } .nav-logo { display: flex; align-items: center; text-decoration: none; line-height: 1; flex-shrink: 0; } .nav-links { display: flex; align-items: center; gap: 28px; } .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.2s; white-space: nowrap; } .nav-links a:hover { color: var(--teal); } .btn-pill { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; border-radius: 100px; background: var(--teal); color: #fff; font-size: 0.875rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap; } .btn-pill:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(15,110,86,0.25); } .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; } .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; } .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .hamburger.open span:nth-child(2) { opacity: 0; } .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .mobile-nav { display: none; position: fixed; inset: 0; top: var(--nav-h); background: var(--bg); z-index: 199; padding: 48px 32px; flex-direction: column; gap: 28px; overflow-y: auto; } .mobile-nav.open { display: flex; } .mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--text); text-decoration: none; transition: color 0.2s; } .mobile-nav a:hover { color: var(--teal); } .mobile-nav .btn-pill { font-family: 'DM Sans', sans-serif; font-size: 1rem; align-self: flex-start; margin-top: 8px; } #hero { min-height: 100vh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px; overflow: hidden; } .hero-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-light); color: var(--teal); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 28px; } .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; flex-shrink: 0; animation: badge-dot-pulse 2s ease-in-out infinite; } .hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; color: var(--text); margin-bottom: 24px; } .hero-h1 em { font-style: italic; color: var(--teal); font-weight: 400; } .hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; max-width: 52ch; margin-bottom: 40px; } .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; } .btn-primary { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 100px; background: var(--teal); color: #fff; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; } .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,110,86,0.28); } .btn-outline { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: 100px; background: transparent; color: var(--text); font-size: 0.95rem; font-weight: 600; text-decoration: none; border: 2px solid var(--border); transition: all 0.2s; cursor: pointer; } .btn-outline:hover { border-color: var(--teal); color: var(--teal); } .hero-right { position: relative; display: flex; align-items: center; justify-content: center; height: 500px; } .float-bg { position: absolute; inset: -60px; pointer-events: none; z-index: 0; } .fshape { position: absolute; transition: transform 0.08s linear; will-change: transform; } .fshape-1 { top: 8%; left: 4%; } .fshape-2 { top: 12%; right: 8%; } .fshape-3 { bottom: 12%; left: 6%; } .fshape-4 { bottom: 8%; right: 4%; } .fshape-5 { top: 50%; left: 50%; transform: translate(-50%,-50%); } .dash-wrap { position: relative; z-index: 2; transition: transform 0.12s ease-out; will-change: transform; } .dash-card { background: #fff; border-radius: 24px; padding: 28px; box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.07); width: 330px; } .dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; } .dash-title { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; } .live-dot { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 600; color: #10B981; } .live-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: pulse 2s infinite; } @keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.08); } } .dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 22px; } .dash-metric { background: #FAFAF7; border-radius: 10px; padding: 12px 10px; text-align: center; } .dm-label { font-size: 0.65rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; } .dm-value { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 4px 0 2px; line-height: 1; } .dm-change { font-size: 0.65rem; font-weight: 600; } .dm-change.up { color: #10B981; } .dm-change.warn { color: var(--gold); } .dash-chart-label { font-size: 0.65rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; } .dash-chart svg { width: 100%; height: 52px; } .dash-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); } .dash-ft-text { font-size: 0.7rem; color: var(--muted); } .dash-badge { font-size: 0.65rem; font-weight: 700; background: var(--teal-light); color: var(--teal); padding: 3px 10px; border-radius: 100px; } section { padding: var(--pad) 0; } .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; } .section-tag { font-size: 0.72rem; font-weight: 600; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; } .section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1.1; } .section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 560px; } #pain-points { background: var(--bg); } .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; } .pain-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid rgba(229,223,214,0.7); box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; } .pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .pain-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; } .pain-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; } .pain-a { font-size: 0.875rem; color: var(--muted); line-height: 1.65; } #bridge { background: var(--gold-bg); } .bridge-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; } .bridge-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 22px; } .bridge-body { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 60px; } .stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-md); gap: 24px; } .stat-item { text-align: center; } .stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; } .stat-lbl { font-size: 0.82rem; color: var(--muted); margin-top: 8px; font-weight: 500; } #services { background: var(--bg); } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; } .svc-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; } .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); } .svc-card.featured { border-color: var(--teal); border-width: 2px; background: linear-gradient(160deg, #EEF8F4 0%, var(--white) 60%); } .popular-tag { position: absolute; top: 20px; right: -26px; background: var(--teal); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 4px 36px; transform: rotate(45deg); transform-origin: center; } .svc-tier { font-size: 0.68rem; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; } .svc-tagline { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); line-height: 1.2; } .svc-name { font-size: 0.95rem; font-weight: 600; color: var(--text); } .svc-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; } .svc-price { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--teal); } .svc-for { font-size: 0.82rem; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; line-height: 1.5; } .svc-for strong { color: var(--text); display: block; margin-bottom: 2px; } #who { background: var(--white); } .pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; } .pill { display: inline-flex; align-items: center; padding: 12px 22px; border-radius: 100px; border: 2px solid var(--border); background: var(--bg); font-size: 0.9rem; font-weight: 500; color: var(--text); transition: all 0.25s ease; cursor: default; } .pill:hover { border-color: var(--teal); background: var(--teal); color: #fff; transform: scale(1.03); } #how-it-works { background: var(--bg); } .steps-wrap { margin-top: 52px; position: relative; } .steps-line { position: absolute; top: 27px; left: calc(12.5% + 0px); right: calc(12.5% + 0px); height: 2px; background: linear-gradient(90deg, var(--teal-light), var(--teal) 50%, var(--teal-light)); z-index: 0; } .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; } .step { text-align: center; padding: 0 12px; } .step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--teal); color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 0 0 8px var(--teal-light); } .step-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.25; } .step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; } #reviews { background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15,110,86,0.04) 0%, transparent 70%), #FDFCFA; padding: var(--pad) 0; } .reviews-split { display: grid; grid-template-columns: 40% 60%; gap: 48px; align-items: center; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; } .reviews-left { display: flex; flex-direction: column; } .reviews-left .section-tag { margin-bottom: 14px; } .reviews-left .section-h2 { margin-bottom: 20px; } .reviews-star-row { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 40px; } .reviews-star-label { font-size: 0.85rem; color: var(--muted); font-weight: 500; } .reviews-arrows { display: flex; gap: 12px; } .rev-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(15,110,86,0.22); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s, transform 0.15s; } .rev-arrow:hover { border-color: var(--teal); background: var(--teal-light); transform: scale(1.06); } .rev-arrow svg { width: 18px; height: 18px; color: var(--teal); } .reviews-right { position: relative; height: 400px; } .rev-card-stack { position: relative; width: 100%; height: 100%; } .rev-card { position: absolute; top: 0; left: 0; right: 0; background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04); transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94); } .rev-card.is-front { z-index:2; transform:translateX(0) translateY(0) scale(1); opacity:1; } .rev-card.is-peek { z-index:1; transform:translateX(40px) translateY(16px) scale(0.85); opacity:0.15; } .rev-card.is-exit { z-index:3; transform:translateX(-110%) scale(0.92); opacity:0; } .rev-card.is-hidden { z-index:0; transform:translateX(60px) translateY(24px) scale(0.75); opacity:0; } .rev-qmark { font-family:'Playfair Display',serif; font-size:4rem; color:#0F6E56; opacity:0.15; line-height:1; display:block; margin-bottom:-12px; } .rev-name { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--text); margin-bottom:3px; } .rev-role { font-size:0.8125rem; color:var(--teal); margin-bottom:16px; font-weight:500; } .rev-text { font-size:0.9rem; color:var(--text); line-height:1.7; margin-bottom:20px; } .rev-footer { display:flex; align-items:center; justify-content:space-between; } .rev-badge { display:inline-flex; padding:4px 12px; border-radius:100px; font-size:0.78rem; font-weight:600; } .rev-badge.teal { background:var(--teal); color:#fff; } .rev-badge.gold { background:#C9A84C; color:#fff; } .rev-stars { color:var(--gold); font-size:0.9rem; letter-spacing:1px; } @media (max-width:900px) { .reviews-split { grid-template-columns:1fr; } .reviews-right { height:460px; } } @media (max-width:600px) { .rev-card { padding:28px 20px; } .reviews-right { height:520px; } } #about { background: var(--bg); } .about-inner { display: grid; grid-template-columns: 180px 1fr; gap: 64px; align-items: start; } .about-photo { width: 150px; height: 150px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: #fff; box-shadow: 0 16px 48px rgba(15,110,86,0.22); flex-shrink: 0; } .about-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; } .about-body { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 32px; } .creds { display: flex; flex-wrap: wrap; gap: 10px; } .cred { display: inline-flex; padding: 6px 16px; border-radius: 100px; background: var(--white); border: 1px solid var(--border); font-size: 0.78rem; font-weight: 600; color: var(--text); } #final-cta { background: var(--teal); padding: var(--pad) 0; text-align: center; } .cta-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; } .cta-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px; } .cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 40px; } .cta-btns { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; } .btn-white { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 100px; background: #fff; color: var(--teal); font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: all 0.2s; } .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); } .cta-email { color: rgba(255,255,255,0.82); font-size: 0.9rem; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; } .cta-email:hover { color: #fff; } footer { background: #141414; color: rgba(255,255,255,0.55); padding: 48px 0 32px; } .foot-top { max-width: var(--wrap); margin: 0 auto; padding: 0 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); } .foot-brand { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; } .foot-brand span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.38); margin-top: 4px; } .foot-icons { display: flex; gap: 12px; } .foot-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; } .foot-icon:hover { background: var(--teal); color: #fff; transform: translateY(-2px); } .foot-icon svg { width: 17px; height: 17px; } .foot-copy { max-width: var(--wrap); margin: 0 auto; padding: 22px 24px 0; font-size: 0.75rem; } @media (max-width: 1024px) { .stat-bar { grid-template-columns: repeat(2,1fr); } } @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } } @media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } .hero-inner { grid-template-columns: 1fr; } .hero-right { height: 300px; } .dash-card { width: 290px; } .pain-grid { grid-template-columns: 1fr 1fr; } .services-grid { max-width: 100%; } .steps-line { display: none; } .steps-grid { grid-template-columns: 1fr; gap: 28px; } .step { display: flex; gap: 20px; text-align: left; align-items: flex-start; } .step-num { margin: 0; flex-shrink: 0; } .reviews-grid { grid-template-columns: 1fr; } .about-inner { grid-template-columns: 1fr; gap: 24px; } .about-photo { margin: 0 auto; } } @media (max-width: 520px) { .pain-grid { grid-template-columns: 1fr; } .stat-bar { grid-template-columns: repeat(2,1fr); padding: 24px 20px; } .hero-ctas { flex-direction: column; align-items: stretch; } .foot-top { flex-direction: column; align-items: center; text-align: center; } .foot-brand span { display: block; margin-top: 4px; margin-left: 0; } } .illus-scene { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; } .illus-center { position: relative; z-index: 3; flex-shrink: 0; filter: drop-shadow(0 16px 40px rgba(15,110,86,0.15)); } .connector-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible; } .hc-wrap { position: absolute; z-index: 4; will-change: transform; } .hc-wrap-1 { top: 6%; left: -4%; } .hc-wrap-2 { bottom: 8%; left: -2%; } .hc-wrap-3 { bottom: 6%; right: -4%; } .hc-wrap-4 { top: 4%; right: -2%; } .hc-wrap-5 { top: -4%; left: 50%; transform: translateX(-50%); } .hc-wrap-6 { bottom: -2%; left: 50%; transform: translateX(-50%); } .hc { background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04); width: 196px; pointer-events: none; } .hc-1 { animation: hc1-cyc 16s ease-in-out infinite; } .hc-2 { animation: hc2-cyc 16s ease-in-out infinite; } .hc-3 { animation: hc3-cyc 16s ease-in-out infinite; } .hc-4 { animation: hc4-cyc 16s ease-in-out infinite; } .hc-5 { animation: hc5-cyc 16s ease-in-out infinite; } .hc-6 { animation: hc6-cyc 16s ease-in-out infinite; } @keyframes hc1-cyc { 0% { opacity:0; transform:translate(-18px,-18px); } 6% { opacity:1; transform:translate(0,0); } 17% { opacity:1; transform:translate(0,0); } 24% { opacity:0; transform:translate(-10px,-10px); } 100% { opacity:0; transform:translate(-10px,-10px); } } @keyframes hc2-cyc { 0%,22% { opacity:0; transform:translate(-16px,14px); } 28% { opacity:1; transform:translate(0,0); } 39% { opacity:1; transform:translate(0,0); } 46% { opacity:0; transform:translate(-10px,8px); } 100% { opacity:0; transform:translate(-10px,8px); } } @keyframes hc3-cyc { 0%,44% { opacity:0; transform:translate(14px,14px); } 50% { opacity:1; transform:translate(0,0); } 61% { opacity:1; transform:translate(0,0); } 68% { opacity:0; transform:translate(8px,8px); } 100% { opacity:0; transform:translate(8px,8px); } } @keyframes hc4-cyc { 0%,66% { opacity:0; transform:translate(14px,-14px); } 72% { opacity:1; transform:translate(0,0); } 83% { opacity:1; transform:translate(0,0); } 90% { opacity:0; transform:translate(8px,-8px); } 100% { opacity:0; transform:translate(8px,-8px); } } @keyframes hc5-cyc { 0%,83% { opacity:0; transform:translateY(-14px); } 89% { opacity:1; transform:translateY(0); } 96% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(-8px); } } @keyframes hc6-cyc { 0%,5% { opacity:0; transform:translate(12px,14px); } 11% { opacity:1; transform:translate(0,0); } 20% { opacity:1; transform:translate(0,0); } 27% { opacity:0; transform:translate(8px,8px); } 100% { opacity:0; transform:translate(8px,8px); } } .hc-tag { font-size:0.6rem; font-weight:700; color:var(--teal); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:4px; } .hc-title { font-size:0.78rem; font-weight:700; color:var(--text); line-height:1.3; margin-bottom:5px; } .hc-sub { font-size:0.68rem; color:var(--muted); } .check-row { display:flex; align-items:center; gap:6px; margin-bottom:3px; font-size:0.68rem; color:var(--muted); } .cb { width:13px; height:13px; border-radius:3px; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:8px; color:#fff; transition: all 0.3s; } .cb.cb1 { animation:cb-pop 12s ease infinite 0.5s; } .cb.cb2 { animation:cb-pop 12s ease infinite 1.1s; } .cb.cb3 { animation:cb-pop 12s ease infinite 1.7s; } @keyframes cb-pop { 0%,25% { background:transparent; border-color:var(--border); } 32%,100%{ background:var(--teal); border-color:var(--teal); } } .hc-bars { display:flex; align-items:flex-end; gap:4px; height:28px; margin-top:6px; } .hc-bar { width:18px; border-radius:3px 3px 0 0; background:var(--teal); } .hc-bar:nth-child(1) { animation:bar-grow 12s ease infinite 0.2s; } .hc-bar:nth-child(2) { animation:bar-grow 12s ease infinite 0.5s; } .hc-bar:nth-child(3) { animation:bar-grow 12s ease infinite 0.8s; } .hc-bar:nth-child(4) { animation:bar-grow 12s ease infinite 1.1s; } .hc-bar:nth-child(5) { animation:bar-grow 12s ease infinite 1.4s; } @keyframes bar-grow { 0%,44% { opacity:0.15; } 55%,100%{ opacity:0.85; } } .pulse-badge { display:inline-flex; align-items:center; gap:5px; background:#D1FAE5; color:#059669; font-size:0.65rem; font-weight:700; padding:3px 9px; border-radius:100px; margin-top:5px; } .pdot { width:6px; height:6px; border-radius:50%; background:#10B981; animation:pdot 1.4s ease-in-out infinite; } @keyframes pdot { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.3;transform:scale(0.7);} } #stat-strip { background:var(--teal); padding:32px 0; } .strip-inner { max-width:var(--wrap); margin:0 auto; padding:0 24px; display:grid; grid-template-columns:repeat(4,1fr); text-align:center; } .strip-item { padding:0 16px; border-right:1px solid rgba(255,255,255,0.15); } .strip-item:last-child { border-right:none; } .strip-num { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; color:#fff; line-height:1; } .strip-lbl { font-size:0.78rem; color:rgba(255,255,255,0.7); margin-top:6px; font-weight:500; } .sticky-outer { display:grid; grid-template-columns:1fr 1fr; max-width:var(--wrap); margin:0 auto; padding:0 24px; } .sticky-label { align-self:start; position:sticky; top:calc(var(--nav-h) + 48px); padding-right:56px; padding-top:80px; padding-bottom:80px; } .sticky-panels { border-left:2px solid var(--border); } .sticky-panel { min-height:100vh; display:flex; align-items:center; padding:60px 0 60px 48px; } .sticky-panel-card { background:var(--white); border-radius:var(--radius-lg); padding:36px 32px; border:1px solid rgba(229,223,214,0.6); box-shadow:var(--shadow-sm); max-width:420px; } .sticky-panel-card .pain-icon { font-size:2.2rem; margin-bottom:16px; display:block; } .sticky-panel-card .pain-q { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--text); margin-bottom:12px; line-height:1.3; } .sticky-panel-card .pain-a { font-size:0.95rem; color:var(--muted); line-height:1.7; } .sticky-panel-card .step-num { width:54px; height:54px; border-radius:50%; background:var(--teal); color:#fff; font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin-bottom:22px; box-shadow:0 0 0 8px var(--teal-light); } .sticky-panel-card .step-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--text); margin-bottom:12px; } .sticky-panel-card .step-desc { font-size:0.95rem; color:var(--muted); line-height:1.75; } .sticky-dots { display:flex; gap:10px; margin-top:40px; } .sdot { width:8px; height:8px; border-radius:50%; background:rgba(15,110,86,0.2); transition:all 0.4s; } .sdot.active { background:var(--teal); transform:scale(1.5); } #pain-points { padding:0; } #how-it-works { background:var(--bg); padding:0; } @media (max-width:900px) { .hero-inner { grid-template-columns:1fr; gap:40px; text-align:left; } .hero-sub { margin-left:auto; margin-right:auto; } .hero-ctas { justify-content:center; } .hero-trust { justify-content:center; } .hero-right { height:380px; width:100%; max-width:480px; margin:0 auto; } .hc { width:158px; padding:10px 13px; } .hc-tag { font-size:0.55rem; } .hc-title { font-size:0.72rem; } .hc-sub { font-size:0.62rem; } .check-row { font-size:0.62rem; } .hc-wrap-1 { top:4%; left:-2%; } .hc-wrap-2 { bottom:6%; left:-2%; } .hc-wrap-3 { bottom:4%; right:-2%; } .hc-wrap-4 { top:2%; right:-2%; } .hc-wrap-5 { top:-5%; left:50%; transform:translateX(-50%); } .hc-wrap-6 { display:none; } } @media (max-width:520px) { .hero-right { height:340px; } .hc { width:132px; padding:8px 10px; } .hc-wrap-1 { top:2%; left:-6px; } .hc-wrap-2 { bottom:4%; left:-6px; } .hc-wrap-3 { bottom:2%; right:-6px; } .hc-wrap-4 { top:0%; right:-6px; } .hc-wrap-5 { top:-6%; left:50%; transform:translateX(-50%); } .hc-wrap-6 { display:none; } } @media (max-width:768px) { #stat-strip .strip-inner { grid-template-columns:repeat(2,1fr); gap:16px; } .strip-item { border-right:none; } .sticky-outer { grid-template-columns:1fr; } .sticky-label { position:static; padding:60px 0 24px 0; } .sticky-panels { border-left:none; border-top:2px solid var(--border); } .sticky-panel { min-height:auto; padding:36px 0; border-top:1px solid var(--border); } .sticky-panel:first-child { border-top:none; } .sticky-panel-card { max-width:100%; } .sticky-dots { flex-direction:row; margin-top:16px; } #pain-points, #how-it-works { padding:0; } } .reveal-tag { opacity:0; transform:translateY(16px); transition:opacity 0.4s cubic-bezier(.25,.46,.45,.94), transform 0.4s cubic-bezier(.25,.46,.45,.94); } .reveal-tag.visible { opacity:1; transform:translateY(0); } .reveal-h2 { opacity:0; transform:translateY(30px); transition:opacity 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94); transition-delay:0.18s; } .reveal-h2.visible { opacity:1; transform:translateY(0); } @media (prefers-reduced-motion:reduce) { .reveal-tag,.reveal-h2 { opacity:1; transform:none; transition:none; } } .pain-svg { width:32px; height:32px; margin-bottom:16px; display:block; color:var(--teal); flex-shrink:0; } #pain-points .sticky-panel { opacity:0.38; transition:opacity 0.4s cubic-bezier(.25,.46,.45,.94); } #pain-points .sticky-panel.is-active { opacity:1; } .sticky-panel-card { position:relative; overflow:hidden; border-left:3px solid transparent; transition:border-left-color 0.4s ease, background 0.4s ease; } #pain-points .sticky-panel.is-active .sticky-panel-card { border-left-color:var(--teal); background:rgba(15,110,86,0.03); } .finance-underline { position:relative; display:inline; } .finance-underline::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px; background:var(--teal); border-radius:2px; transition:width 0.9s cubic-bezier(.25,.46,.45,.94) 0.35s; } .finance-underline.drawn::after { width:100%; } #bridge .stat-bar { display:flex; padding:0; gap:0; grid-template-columns:none; } #bridge .stat-item { flex:1; border-top:2px solid var(--teal); padding:28px 20px 24px; text-align:center; } #bridge .stat-num { font-size:3.5rem; } @media (max-width:640px) { #bridge .stat-bar { flex-wrap:wrap; } #bridge .stat-item { min-width:50%; flex:none; } } .creds-logo-row { display:flex; align-items:flex-start; gap:32px; flex-wrap:wrap; padding-top:28px; border-top:1px solid var(--border); } .cred-logo-item { display:flex; flex-direction:column; align-items:center; gap:8px; min-width:72px; } .cred-logo-img { height:48px; width:auto; max-width:110px; object-fit:contain; filter:grayscale(1) opacity(0.55); transition:filter 0.3s ease; } .cred-logo-item:hover .cred-logo-img { filter:grayscale(0) opacity(1); } .cred-logo-text { font-size:0.7rem; font-weight:500; color:var(--muted); text-align:center; line-height:1.4; } .cred-logo-icon { height:48px; display:flex; align-items:center; justify-content:center; } .cred-logo-icon svg { width:38px; height:38px; opacity:0.45; transition:opacity 0.3s; color:var(--text); } .cred-logo-item:hover .cred-logo-icon svg { opacity:0.85; } #who { background: radial-gradient(ellipse 70% 55% at 50% 60%, rgba(15,110,86,0.055) 0%, transparent 70%), var(--white); padding: var(--pad) 0; } .who-header { max-width:var(--wrap); margin:0 auto; padding:0 24px; } .who-scroll-window { max-height:520px; overflow:hidden; margin-top:40px; position:relative; -webkit-mask-image:linear-gradient(to bottom, transparent 0px, black 60px, black calc(100% - 60px), transparent 100%); mask-image:linear-gradient(to bottom, transparent 0px, black 60px, black calc(100% - 60px), transparent 100%); } .who-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding:0 24px; max-width:var(--wrap); margin:0 auto; } .who-col-inner { display:flex; flex-direction:column; gap:16px; } .who-col-1 .who-col-inner { animation:scroll-up 20s linear infinite; } .who-col-2 .who-col-inner { animation:scroll-up 25s linear infinite; } .who-col-3 .who-col-inner { animation:scroll-up 22s linear infinite; } @keyframes scroll-up { from{transform:translateY(0);} to{transform:translateY(-50%);} } .who-ind-card { background:#fff; border-radius:16px; padding:24px; box-shadow:0 2px 16px rgba(0,0,0,0.06); border:1px solid #F0EDE8; transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; cursor:default; flex-shrink:0; } .who-ind-card:hover { transform:translateY(-4px); box-shadow:0 6px 28px rgba(0,0,0,0.1); border-color:#0F6E56; border-width:1.5px; } .who-ind-icon { width:64px; height:64px; border-radius:50%; background:#E6F4EF; display:flex; align-items:center; justify-content:center; margin-bottom:14px; } .who-ind-name { font-family:'DM Sans',sans-serif; font-weight:600; font-size:0.9375rem; color:var(--text); margin-bottom:4px; } .who-ind-examples { font-family:'DM Sans',sans-serif; font-weight:400; font-size:0.75rem; color:var(--muted); } .who-cta { text-align:center; margin-top:36px; padding:0 24px; } @media (prefers-reduced-motion:reduce) { .who-col-1 .who-col-inner,.who-col-2 .who-col-inner,.who-col-3 .who-col-inner { animation:none; } .who-scroll-window { max-height:none; overflow:visible; -webkit-mask-image:none; mask-image:none; } } @media (max-width:768px) { .who-cols { grid-template-columns:1fr 1fr; } } @media (max-width:520px) { .who-cols { grid-template-columns:1fr; } } .step-progress-track { width:100%; height:3px; background:var(--teal-light); position:sticky; top:var(--nav-h); z-index:10; } .step-progress-fill { height:100%; background:var(--teal); width:25%; transition:width 0.45s cubic-bezier(.25,.46,.45,.94); } .step-watermark { position:absolute; top:-8px; right:16px; font-family:'Playfair Display',serif; font-size:8rem; font-weight:700; color:var(--teal); opacity:0.07; line-height:1; pointer-events:none; user-select:none; z-index:0; } #how-it-works .sticky-panel { min-height:70vh; } #how-it-works .sticky-panel .sticky-panel-card { transform:translateX(60px); opacity:0.35; transition:transform 0.5s cubic-bezier(.25,.46,.45,.94), opacity 0.5s cubic-bezier(.25,.46,.45,.94), border-left-color 0.4s, background 0.4s; } #how-it-works .sticky-panel.is-active .sticky-panel-card { transform:translateX(0); opacity:1; border-left-color:var(--teal); background:rgba(15,110,86,0.025); } .svc-card::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:3px; background:linear-gradient(90deg, transparent, rgba(15,110,86,0.85), transparent); transition:left 0.55s ease; z-index:1; } .svc-card:hover::before { left:100%; } .svc-card:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06); } .cycler-nav { display:flex; align-items:center; justify-content:center; gap:16px; width:100%; } .cyc-arrow { width:40px; height:40px; border-radius:50%; border:1.5px solid rgba(15,110,86,0.25); background:var(--white); cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; opacity:0.4; transition:opacity 0.2s, border-color 0.2s, transform 0.15s; } .cyc-arrow:hover { opacity:1; border-color:var(--teal); transform:scale(1.06); } .cyc-arrow svg { width:18px; height:18px; color:var(--teal); } @media (prefers-reduced-motion:reduce) { .cyc-arrow { transition:none; } } .hiw-roadmap { max-width:680px; margin:36px auto 0; padding:0 44px; } .hiw-roadmap svg { overflow:visible; display:block; width:100%; } .road-fill { transition:stroke-dashoffset 600ms ease-in-out; } .pulse-ring { animation:road-pulse 1.5s ease-in-out infinite; transform-box:fill-box; transform-origin:center; } @keyframes road-pulse { 0%,100%{transform:scale(1);opacity:0.35;} 50%{transform:scale(1.55);opacity:0;} } @keyframes road-dash-flow { to { stroke-dashoffset:-20; } } #roadCenterDash { animation:road-dash-flow 0.9s linear infinite; } #carGroup { transition:none; } @media (prefers-reduced-motion:reduce) { .pulse-ring{animation:none;} .road-fill{transition:none;} #roadCenterDash{animation:none;} } .sticky-cta-btn { position:fixed; bottom:32px; right:32px; z-index:999; display:inline-flex; align-items:center; gap:8px; background:var(--teal); color:#fff; text-decoration:none; border-radius:100px; padding:14px 24px; font-family:'DM Sans',sans-serif; font-size:0.875rem; font-weight:500; box-shadow:0 8px 32px rgba(15,110,86,0.35); opacity:0; pointer-events:none; transition:opacity 0.3s, transform 0.2s, box-shadow 0.2s; } .sticky-cta-btn.visible { opacity:1; pointer-events:auto; } .sticky-cta-btn:hover { transform:translateY(-2px); box-shadow:0 12px 40px rgba(15,110,86,0.45); color:#fff; } .sticky-cta-btn svg { width:16px; height:16px; flex-shrink:0; } @media (max-width:600px) { .sticky-cta-btn { padding:10px 18px; bottom:20px; right:16px; font-size:0.8rem; } } @media (prefers-reduced-motion:reduce) { .sticky-cta-btn { transition:opacity 0.3s; } } .nav-brand { display:flex; align-items:center; gap:10px; flex-shrink:0; } .nav-status { display:flex; align-items:center; gap:6px; flex-shrink:0; } .nav-brand { display:flex; align-items:center; flex-shrink:0; } .nav-status { display:flex; align-items:center; gap:6px; margin-left:12px; flex-shrink:0; } .status-dot { width:8px; height:8px; border-radius:50%; background:#22C55E; animation:status-pulse 1.5s ease-in-out infinite; } @keyframes status-pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:0.5;} } .status-text { font-size:11px; color:var(--teal); font-weight:500; opacity:0.85; white-space:nowrap; } @media (max-width:900px) { .nav-status { display:none; } } @media (prefers-reduced-motion:reduce) { .status-dot { animation:none; } } .response-badge { display:inline-flex; align-items:center; gap:6px; background:var(--teal-light); color:var(--teal); padding:6px 16px; border-radius:100px; font-size:0.8125rem; font-weight:500; margin-bottom:28px; } .response-badge svg { width:16px; height:16px; flex-shrink:0; } .review-stars-row { display:flex; align-items:center; gap:8px; margin-bottom:14px; } .review-stars-gold { color:#F59E0B; font-size:18px; letter-spacing:1px; line-height:1; } .review-stars-label { font-size:12px; color:var(--muted); font-weight:500; } .svc-deliverables { margin:2px 0 8px; padding:0; list-style:none; display:flex; flex-direction:column; gap:5px; } .svc-deliverables li { display:flex; align-items:flex-start; gap:7px; font-size:0.8rem; color:var(--muted); line-height:1.4; } .svc-deliverables li svg { width:12px; height:12px; color:var(--teal); flex-shrink:0; margin-top:2px; } #faq { background:var(--bg); padding:var(--pad) 0; } .faq-list { max-width:720px; margin:48px auto 0; } .faq-item { border-bottom:0.5px solid var(--border); } .faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; padding:20px 0; font-size:1rem; font-weight:500; color:var(--text); background:none; border:none; cursor:pointer; text-align:left; gap:20px; font-family:'DM Sans',sans-serif; line-height:1.4; } .faq-icon { font-size:1.4rem; color:var(--teal); flex-shrink:0; transition:transform 0.3s ease; line-height:1; } .faq-item.open .faq-icon { transform:rotate(45deg); } .faq-a { overflow:hidden; max-height:0; transition:max-height 0.35s ease, padding-bottom 0.35s ease; } .faq-item.open .faq-a { max-height:700px; padding-bottom:20px; } .faq-a p { font-size:0.9375rem; color:var(--muted); line-height:1.75; } @media (prefers-reduced-motion:reduce) { .faq-a,.faq-icon { transition:none; } } @media (max-width:768px) { :root { --pad: clamp(44px, 7vw, 72px); } .wrap { padding:0 20px; } .nav-inner { padding:0 20px; } .hero-inner { padding:0 20px; } .who-header { padding:0 20px; } .faq-list { padding:0 20px; max-width:100%; } .faq-q { font-size:0.9375rem; padding:18px 0; } #hero { min-height:auto; padding-top:calc(var(--nav-h) + 28px); padding-bottom:48px; } .hero-h1 { font-size:clamp(2rem, 7vw, 2.6rem); } .hero-sub { font-size:0.95rem; } .services-grid { grid-template-columns:1fr; } .reviews-split { grid-template-columns:1fr; gap:28px; } .reviews-right { height:300px; } .rev-card { padding:28px 22px; } .about-inner { grid-template-columns:1fr; text-align:center; } .creds-logo-row { justify-content:center; } .pain-cycler-card { padding:32px 20px; margin-top:28px; } .step-cycler-card { padding:32px 20px; margin-top:28px; } .hiw-content { padding:var(--pad) 20px; } .hiw-roadmap { padding:0 8px; } .who-cols { padding:0 16px; } .ts-tools { gap:14px 16px; } .strip-inner { padding:0 20px; } #final-cta .cta-inner { padding:52px 20px; } .cta-h2 { font-size:clamp(1.5rem, 5vw, 2rem); } footer { padding:36px 20px 20px; } .foot-top { flex-direction:column; gap:18px; align-items:center; text-align:center; } .sticky-cta-btn { bottom:16px; right:12px; padding:12px 20px; font-size:0.8rem; } } @media (max-width:480px) { .wrap { padding:0 16px; } .who-cols { grid-template-columns:1fr; padding:0 14px; } .hero-ctas { flex-direction:column; gap:12px; align-items:center; } .btn-primary, .btn-outline { width:100%; max-width:300px; justify-content:center; } } .hero-trust { display:inline-flex; align-items:center; gap:7px; margin-top:20px; flex-wrap:wrap; text-decoration:none; cursor:pointer; padding-bottom:2px; border-bottom:1.5px solid transparent; transition:opacity 0.2s, border-color 0.2s; } .hero-trust:hover { opacity:0.82; border-bottom-color:var(--teal); } .hero-trust-success { font-size:0.8125rem; font-weight:500; color:var(--teal); } .hero-trust-sep { font-size:0.8125rem; color:var(--muted); } .hero-trust-verified { font-size:0.8125rem; color:var(--muted); } .hero-upwork-logo { height:14px; width:auto; object-fit:contain; display:inline-block; vertical-align:middle; } .hero-trust-upwork-badge { font-size:0.8rem; font-weight:600; color:#22C55E; } #pain-points { padding:var(--pad) 0; background:radial-gradient(ellipse 80% 60% at 50% 50%, rgba(15,110,86,0.04) 0%, transparent 70%), var(--bg); text-align:center; } .cycler-outer { max-width:var(--wrap); margin:0 auto; padding:0 24px; } .pain-cycler-card { max-width:680px; margin:40px auto 0; background:var(--white); border-radius:var(--radius-lg); padding:48px 44px; border:1px solid rgba(229,223,214,0.7); box-shadow:var(--shadow-md); } .cycler-slot { min-height:180px; display:flex; flex-direction:column; align-items:center; } .cycler-slot.flip-in { animation:card-flip-in 0.5s cubic-bezier(.25,.46,.45,.94) both; } @keyframes card-flip-in { from { opacity:0; transform:perspective(1000px) rotateY(8deg); } to { opacity:1; transform:perspective(1000px) rotateY(0deg); } } @media (prefers-reduced-motion:reduce) { .cycler-slot.flip-in { animation:none; opacity:1; } } .cycler-icon { display:flex; justify-content:center; margin-bottom:20px; } .cycler-icon svg { width:40px; height:40px; color:var(--teal); } .cycler-q { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; color:var(--text); margin-bottom:14px; line-height:1.3; } .cycler-a { font-size:0.95rem; color:var(--muted); line-height:1.75; max-width:520px; } .cycler-dots { display:flex; gap:10px; justify-content:center; margin-top:28px; } .cdot { width:9px; height:9px; border-radius:50%; border:none; padding:0; cursor:pointer; background:rgba(15,110,86,0.2); transition:background 0.3s, transform 0.3s; } .cdot.active { background:var(--teal); transform:scale(1.45); } @media (max-width:600px) { .pain-cycler-card { padding:36px 24px; } .cycler-q { font-size:1.15rem; } } #how-it-works { background:var(--white); padding:0; text-align:center; } .hiw-progress-wrap { width:100%; height:3px; background:var(--teal-light); } .hiw-progress-fill { height:100%; background:var(--teal); width:25%; transition:width 0.45s cubic-bezier(.25,.46,.45,.94); } .hiw-content { padding:var(--pad) 24px; max-width:var(--wrap); margin:0 auto; } .step-cycler-card { max-width:680px; margin:40px auto 0; background:var(--bg); border-radius:var(--radius-lg); padding:48px 44px; border-left:3px solid var(--teal); box-shadow:var(--shadow-md); position:relative; overflow:hidden; text-align:left; } .step-cycler-card.flip-in { animation:card-flip-in 0.5s cubic-bezier(.25,.46,.45,.94) both; } .step-wm { position:absolute; top:-10px; right:16px; font-family:'Playfair Display',serif; font-size:8rem; font-weight:700; color:var(--teal); opacity:0.06; line-height:1; pointer-events:none; user-select:none; } .step-circle { width:52px; height:52px; border-radius:50%; background:var(--teal); color:#fff; font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin-bottom:20px; box-shadow:0 0 0 8px var(--teal-light); position:relative; z-index:1; } .step-cyc-title { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; color:var(--text); margin-bottom:14px; position:relative; z-index:1; } .step-cyc-desc { font-size:0.95rem; color:var(--muted); line-height:1.75; position:relative; z-index:1; } @media (max-width:600px) { .step-cycler-card { padding:36px 24px; } } #tech-stack { background:var(--bg); padding:var(--pad) 0; text-align:center; } .ts-sub { font-size:1rem; color:var(--muted); margin:12px auto 52px; max-width:560px; } .ts-float { animation:pill-drift 3s ease-in-out infinite; } @media (prefers-reduced-motion:reduce) { .ts-float { animation:none; } } .ts-category { margin-bottom:36px; text-align:center; opacity:0; transform:translateY(24px); transition:opacity 0.5s cubic-bezier(.25,.46,.45,.94), transform 0.5s cubic-bezier(.25,.46,.45,.94); } .ts-category.visible { opacity:1; transform:translateY(0); } @media (prefers-reduced-motion:reduce) { .ts-category { opacity:1; transform:none; transition:none; } } .ts-cat-label { font-size:0.68rem; font-weight:700; color:var(--teal); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:14px; } .ts-tools { display:flex; flex-wrap:wrap; justify-content:center; gap:18px 22px; } .ts-tool { display:flex; flex-direction:column; align-items:center; gap:6px; cursor:default; } .ts-logo-wrap { height:36px; display:flex; align-items:center; justify-content:center; } .ts-logo { height:36px; width:auto; max-width:80px; object-fit:contain; filter:grayscale(1) opacity(0.5); transition:filter 0.2s ease, transform 0.2s ease; display:block; } .ts-tool:hover .ts-logo { filter:grayscale(0) opacity(1); transform:scale(1.12); } .ts-badge { display:none; align-items:center; padding:5px 12px; border-radius:6px; background:var(--teal-light); color:var(--teal); font-size:0.72rem; font-weight:700; height:36px; white-space:nowrap; } .ts-badge.orange { background:#FEF3EE; color:#C4500A; } .ts-badge.blue { background:#EEF3FE; color:#2B5DD9; } .ts-badge.purple { background:#F3EEFE; color:#7B2BD9; } .ts-badge.green { background:#EEFAF4; color:#1A7B52; } .ts-badge.show { display:inline-flex; } .ts-name { font-size:0.67rem; font-weight:500; color:var(--muted); text-align:center; max-width:80px; line-height:1.3; } button, [role="button"], a[href], .cyc-arrow, .rev-arrow, .faq-q, .btn-pill, .btn-primary, .btn-outline, .btn-white { touch-action: manipulation; } @media (max-width: 480px) { :root { --pad: clamp(40px, 7vw, 64px); } } @media (max-width: 767px) { #hero { min-height: auto; padding-top: calc(var(--nav-h) + 28px); padding-bottom: 48px; } .hero-inner { gap: 32px; } .hero-sub { font-size: 0.95rem; margin-bottom: 28px; max-width: 100%; } .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; } .btn-primary, .btn-outline { width: 100%; justify-content: center; } } @media (max-width: 480px) { #hero { padding-top: calc(var(--nav-h) + 16px); padding-bottom: 36px; } .hero-right { height: 220px; } .hero-h1 { font-size: clamp(1.9rem, 7.5vw, 2.4rem); } .hero-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 18px; } .hero-inner { padding: 0 16px; } .hero-sub { font-size: 0.88rem; margin-bottom: 22px; } .hero-trust { gap: 5px; } .hero-trust-success, .hero-trust-sep, .hero-trust-verified, .hero-trust-upwork-badge { font-size: 0.75rem; } } @media (max-width: 480px) { .nav-inner { padding: 0 14px; } .nav-logo { font-size: 1.1rem; } .mobile-nav { padding: 36px 24px; gap: 24px; } .mobile-nav a { font-size: 1.9rem; } } @media (max-width: 480px) { #stat-strip { padding: 20px 0; } .strip-num { font-size: 1.55rem; } .strip-lbl { font-size: 0.7rem; } .strip-item { padding: 0 8px; } } @media (max-width: 767px) { .cycler-outer { padding: 0 14px; } .cyc-arrow { width: 44px; height: 44px; opacity: 0.7; flex-shrink: 0; } .cycler-nav { gap: 10px; } } @media (max-width: 480px) { .pain-cycler-card { padding: 26px 14px; } .cycler-q { font-size: 1.05rem; } .cycler-a { font-size: 0.87rem; } .cycler-slot { min-height: 150px; } } @media (max-width: 767px) { .bridge-inner { padding: 0 16px; } .bridge-h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); } .bridge-body { font-size: 0.95rem; margin-bottom: 40px; } } @media (max-width: 480px) { #bridge .stat-num { font-size: 2.2rem; } #bridge .stat-item { padding: 22px 12px 18px; } } @media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; max-width: 100%; } .svc-card { padding: 28px 20px; } } @media (max-width: 767px) { .who-scroll-window { max-height: 460px; } .who-cols { padding: 0 14px; } } @media (max-width: 480px) { .who-scroll-window { max-height: 400px; } .who-cols { padding: 0 10px; gap: 12px; } .who-ind-card { padding: 16px 14px; } .who-ind-icon { width: 52px; height: 52px; margin-bottom: 10px; } .who-ind-name { font-size: 0.875rem; } .who-ind-examples { font-size: 0.7rem; } } @media (max-width: 767px) { .hiw-roadmap { padding: 0 10px; margin: 18px auto 0; max-width: 100%; } .hiw-content { padding-left: 16px; padding-right: 16px; } .step-cycler-card { padding: 30px 18px; } #how-it-works .cyc-arrow { width: 44px; height: 44px; } } @media (max-width: 480px) { .hiw-roadmap { padding: 0 4px; } .step-cycler-card { padding: 24px 14px; } .step-cyc-title { font-size: 1.1rem; } .step-cyc-desc { font-size: 0.9rem; } } @media (max-width: 767px) { .reviews-split { padding: 0 16px; gap: 28px; } .reviews-right { height: 430px; } .rev-arrow { width: 48px; height: 48px; } .rev-text { font-size: 0.875rem; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; } } @media (max-width: 480px) { .reviews-right { height: 400px; } .rev-card { padding: 22px 16px; } .rev-text { font-size: 0.82rem; -webkit-line-clamp: 6; } .rev-qmark { font-size: 3rem; margin-bottom: -8px; } .rev-name { font-size: 1rem; } .rev-role { font-size: 0.75rem; } } @media (max-width: 767px) { .about-photo { width: 120px; height: 120px; font-size: 2rem; } .creds-logo-row { gap: 18px; justify-content: center; } } @media (max-width: 480px) { .about-photo { width: 100px; height: 100px; font-size: 1.8rem; } .about-body { font-size: 0.9rem; margin-bottom: 24px; } } @media (max-width: 767px) { .ts-tools { gap: 14px 16px; } .ts-sub { font-size: 0.9rem; margin-bottom: 40px; } } @media (max-width: 480px) { .ts-tools { gap: 10px 12px; } .ts-logo { height: 28px; max-width: 60px; } .ts-logo-wrap { height: 28px; } .ts-badge { font-size: 0.63rem; padding: 4px 8px; height: 28px; } .ts-name { font-size: 0.6rem; max-width: 60px; } } @media (max-width: 767px) { .faq-list { max-width: 100%; padding: 0; } .faq-q { font-size: 0.9375rem; padding: 18px 0; } .faq-a p { font-size: 0.875rem; } } @media (max-width: 480px) { .cta-inner { padding: 0 16px; } .cta-h2 { font-size: clamp(1.5rem, 6vw, 2rem); } .cta-sub { font-size: 0.9rem; margin-bottom: 24px; } .cta-btns { flex-direction: column; align-items: center; gap: 14px; } .btn-white { width: 100%; max-width: 320px; justify-content: center; } } @media (max-width: 767px) { .foot-top { flex-direction: column; align-items: center; text-align: center; gap: 16px; } .foot-icons { justify-content: center; } .foot-icon { width: 44px; height: 44px; } } @media (max-width: 480px) { .sticky-cta-btn { bottom: 14px; right: 10px; padding: 11px 16px; font-size: 0.78rem; gap: 5px; } } @media (max-width: 480px) { .wrap { padding: 0 16px; } .bridge-inner { padding: 0 16px; } .section-sub { max-width: 100%; } } @media (max-width:768px) { #other-services [style*="grid-template-columns:repeat(3"] { grid-template-columns:1fr !important; } #other-services [style*="justify-content:space-between"] { flex-direction:column !important; align-items:flex-start !important; } #other-services [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns:1fr !important; } } @keyframes hero-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } @keyframes badge-dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50% { box-shadow: 0 0 0 4px rgba(34,197,94,0); } } @media (prefers-reduced-motion: no-preference) { .hero-left .hero-badge { animation: hero-fade-up 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0s both; } .hero-left .hero-h1 { animation: hero-fade-up 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.12s both; } .hero-left .hero-sub { animation: hero-fade-up 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.28s both; } .hero-left .hero-ctas { animation: hero-fade-up 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.44s both; } .hero-left .hero-trust { animation: hero-fade-up 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.6s both; } } @media (prefers-reduced-motion: reduce) { .hero-badge::before { animation: none; } } .illus-scene::before { content: ''; position: absolute; inset: -20%; background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(15,110,86,0.08) 0%, transparent 65%); pointer-events: none; z-index: 0; }
