:root { --red: #C8102E; --blue: #2D68C4; --green: #009B48; --yellow: #F5A623; --white: #FFFFFF; --bg: #FFFFFF; --bg-soft: #F4F4F4; --dark: #1A1A1A; --dark-2: #232323; --ink: #1A1A1A; --ink-soft: #555; --ink-dim: #999; --line: #E0E0E0; --line-soft: #ECECEC; --heading: 'Montserrat', -apple-system, sans-serif; --sans: 'Manrope', -apple-system, sans-serif; } * { margin:0; padding:0; box-sizing:border-box; } html { scroll-behavior:smooth; } body { font-family: var(--sans); font-size: 18px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; } .container { max-width:1240px; margin:0 auto; padding:0 32px; } h1,h2,h3 { font-family: var(--heading); font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; } h1 { font-size: clamp(52px, 8vw, 110px); } h2 { font-size: clamp(38px, 5.5vw, 76px); margin-bottom: 36px; } h3 { font-size: clamp(21px, 2.3vw, 27px); font-weight: 800; line-height: 1.2; } em, i { font-family: var(--heading); font-style: normal; font-weight: 900; } p { font-weight: 400; } /* ACCENT COLORS IN CONTEXT */ .c-red { color: var(--red); } .c-blue { color: var(--blue); } .c-green { color: var(--green); } .c-yellow { color: var(--yellow); } /* EYEBROW */ .eyebrow { display:inline-flex; align-items:baseline; gap:14px; font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:36px; } .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; } .dark .eyebrow { color:rgba(255,255,255,0.5); } /* BUTTONS */ .btn { display:inline-flex; align-items:center; gap:10px; padding:18px 34px; font-family:var(--sans); font-size:15px; font-weight:700; text-decoration:none; border:none; cursor:pointer; border-radius:0; transition:all 0.2s ease; letter-spacing:0.02em; text-transform:uppercase; } .btn-red { background:var(--red); color:#fff; } .btn-red:hover { background:#A00D24; transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,16,46,0.25); } .btn-blue { background:var(--blue); color:#fff; } .btn-blue:hover { background:#1E4FA0; transform:translateY(-2px); } .btn-ghost { background:transparent; color:var(--ink); border:3px solid var(--ink); } .btn-ghost:hover { background:var(--ink); color:#fff; } .dark .btn-ghost { color:#fff; border-color:rgba(255,255,255,0.4); } .dark .btn-ghost:hover { background:#fff; color:var(--ink); border-color:#fff; } .btn-arrow::after { content:"→"; transition:transform 0.2s; } .btn-arrow:hover::after { transform:translateX(5px); } section { padding:120px 0; position:relative; } section.dark { background:var(--dark); color:#fff; } section.dark h1, section.dark h2, section.dark h3 { color:#fff; } section.soft { background:var(--bg-soft); } /* GEOMETRIC DECORATIONS */ .geo { position: absolute; pointer-events: none; z-index: 0; } .geo-circle { border-radius: 50%; } .geo-square { transform: rotate(15deg); } /* NAV */ .nav { position:sticky; top:0; z-index:60; background:rgba(255,255,255,0.95); backdrop-filter:blur(14px); border-bottom:3px solid var(--red); } .nav-inner { display:flex; justify-content:space-between; align-items:center; height:72px; gap:24px; } .nav-logo { font-family:var(--heading); font-weight:900; font-size:18px; letter-spacing:0.03em; text-transform:uppercase; } .nav-logo em { color:var(--red); font-style:normal; } .nav-links { display:flex; gap:32px; } .nav-links a { color:var(--ink-soft); text-decoration:none; font-size:14px; font-weight:600; transition:color 0.2s; letter-spacing:0.03em; } .nav-links a:hover { color:var(--red); } .nav-cta { font-size:13px; padding:12px 24px; } @media(max-width:860px){ .nav-links{display:none;} } /* COLOR BAR */ .color-bar { display: flex; height: 6px; width: 100%; } .color-bar > div { flex: 1; } /* HERO */ .hero { padding:80px 0 100px; position:relative; overflow:hidden; } .hero .container { position:relative; z-index:1; } .hero-deco-pattern { position: absolute; top: -80px; right: -120px; width: 600px; height: 600px; opacity: 0.12; pointer-events: none; z-index: 0; background-image: url("b50897a7-4ca1-4da3-8e14-46c6c53aa84f"); background-size: cover; transform: rotate(-5deg); } .hero-meta { display:flex; align-items:center; gap:16px; margin-bottom:48px; font-family:var(--sans); font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-soft); } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 6px 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; } .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: blink 2s infinite; } @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} } .hero h1 { max-width:16ch; margin-bottom:40px; } .hero h1 em { color:var(--red); } .hero-sub { max-width:52ch; font-size:clamp(18px,2vw,22px); color:var(--ink-soft); line-height:1.5; margin-bottom:48px; } .hero-cta-row { display:flex; gap:16px; flex-wrap:wrap; align-items:center; } .hero-cta-note { color:var(--ink-dim); font-size:14px; margin-left:8px; } .hero-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:48px; margin-top:88px; padding-top:44px; border-top:4px solid var(--red); } .hero-fact .hf-num { font-family:var(--heading); font-size:clamp(52px,6.5vw,80px); font-weight:900; color:var(--ink); line-height:0.95; margin-bottom:12px; } .hero-fact .hf-num em { font-style: normal; } .hero-fact .hf-label { font-size:14px; color:var(--ink-soft); max-width:22ch; line-height:1.45; } /* Color underline for each fact */ .hero-fact:nth-child(1) .hf-num { color: var(--red); } .hero-fact:nth-child(2) .hf-num { color: var(--blue); } .hero-fact:nth-child(3) .hf-num { color: var(--green); } /* QUICK SUMMARY */ .quick { background:#fff; border-top:4px solid var(--blue); padding:100px 0; } .quick-head { display:flex; justify-content:space-between; align-items:baseline; gap:28px; margin-bottom:44px; flex-wrap:wrap; } .quick-head h2 { font-size:clamp(34px,4.2vw,52px); margin:0; } .quick-head h2 em { color:var(--blue); } .quick-head .quick-sub { color:var(--ink-soft); font-size:16px; max-width:34ch; } .quick-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:3px solid var(--ink); overflow:hidden; } .quick-cell { background:#fff; padding:32px 24px; border-right: 1px solid var(--line); position: relative; } .quick-cell:last-child { border-right: none; } .quick-cell::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; } .quick-cell:nth-child(1)::before { background: var(--red); } .quick-cell:nth-child(2)::before { background: var(--blue); } .quick-cell:nth-child(3)::before { background: var(--green); } .quick-cell:nth-child(4)::before { background: var(--yellow); } .quick-label { font-family:var(--sans); font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-dim); margin-bottom:12px; } .quick-value { font-family:var(--heading); font-size:clamp(20px,2.2vw,26px); font-weight:800; line-height:1.15; color:var(--ink); margin-bottom:8px; } .quick-note { font-size:13px; color:var(--ink-soft); line-height:1.45; } .quick-cta-row { display:flex; gap:16px; align-items:center; margin-top:36px; flex-wrap:wrap; } .quick-cta-note { font-size:14px; color:var(--ink-soft); } .quick-cta-note b { color:var(--ink); font-weight:700; } @media(max-width:900px){ .quick-grid{grid-template-columns:1fr 1fr;} .quick-cell{border-bottom:1px solid var(--line);} } @media(max-width:540px){ .quick-grid{grid-template-columns:1fr;} } /* STRIP */ .strip { display:flex; overflow:hidden; white-space:nowrap; padding:0; } .strip-track { display:flex; animation: marquee 30s linear infinite; } .strip-item { display:flex; align-items:center; gap:24px; padding: 18px 40px; font-family:var(--heading); font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:0.06em; color:#fff; flex-shrink:0; } .strip-item:nth-child(4n+1) { background:var(--red); } .strip-item:nth-child(4n+2) { background:var(--blue); } .strip-item:nth-child(4n+3) { background:var(--green); } .strip-item:nth-child(4n+4) { background:var(--yellow); color:var(--ink); } .strip-diamond { width:8px; height:8px; background:#fff; transform:rotate(45deg); flex-shrink:0; } .strip-item:nth-child(4n+4) .strip-diamond { background:var(--ink); } @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* BENEFITS */ .benefits-lead { max-width:58ch; margin-top:10px; margin-bottom:10px; font-family:var(--sans); font-size:clamp(20px,2.2vw,26px); line-height:1.4; color:var(--ink-soft); font-weight:500; } .benefits-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:0; margin-top:56px; border:3px solid var(--ink); } .benefit { background:#fff; padding:44px 40px; transition:all 0.2s; position:relative; overflow:hidden; border-right:1px solid var(--line); border-bottom:1px solid var(--line); } .benefit:nth-child(2n) { border-right: none; } .benefit:nth-child(n+3) { border-bottom: none; } .benefit:hover { background: var(--bg-soft); } .benefit-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; font-family:var(--heading); font-weight:900; font-size:22px; color:#fff; margin-bottom:24px; } .benefit:nth-child(1) .benefit-icon { background:var(--red); } .benefit:nth-child(2) .benefit-icon { background:var(--blue); } .benefit:nth-child(3) .benefit-icon { background:var(--green); } .benefit:nth-child(4) .benefit-icon { background:var(--yellow); color:var(--ink); } .benefit h3 { margin-bottom:16px; text-transform:none; font-weight:700; } .benefit p { color:var(--ink-soft); font-size:16px; line-height:1.6; } /* WAVE SEPARATOR */ .wave-sep { width: 100%; height: 120px; overflow: hidden; position: relative; } .wave-sep img { width: 120%; height: 100%; object-fit: cover; position: absolute; left: -10%; top: 0; } /* PRICING TABLE */ .ptable-wrap { overflow-x:auto; border:3px solid var(--ink); } .ptable { width:100%; border-collapse:collapse; background:#fff; font-family:var(--sans); min-width:760px; } .ptable th, .ptable td { padding:16px 18px; text-align:left; border-bottom:1px solid var(--line-soft); vertical-align:middle; } .ptable thead th { background:var(--bg-soft); font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-dim); border-bottom:2px solid var(--line); } .ptable thead th.pt-red { background:#fff; color:var(--ink); border-top:4px solid var(--red); } .ptable thead th.pt-blue { background:#fff; color:var(--ink); border-top:4px solid var(--blue); } .ptable thead th.pt-green { background:#fff; color:var(--ink); border-top:4px solid var(--green); } .ptable thead th .ptable-name { font-family:var(--heading); font-size:20px; font-weight:800; text-transform:uppercase; margin-bottom:4px; display:block; line-height:1.1; letter-spacing:0; } .ptable thead th.pt-red .ptable-name { color:var(--red); } .ptable thead th.pt-blue .ptable-name { color:var(--blue); } .ptable thead th.pt-green .ptable-name { color:var(--green); } .ptable thead th .ptable-price { font-family:var(--heading); font-size:26px; font-weight:900; text-transform:none; display:block; margin-top:6px; letter-spacing:-0.02em; } .ptable thead th.pt-red .ptable-price, .ptable thead th.pt-blue .ptable-price, .ptable thead th.pt-green .ptable-price { color:var(--ink); } .ptable thead th .ptable-price { color:var(--ink); } .ptable thead th .ptable-period { font-size:12px; font-weight:500; text-transform:none; letter-spacing:0; display:block; margin-top:4px; line-height:1.4; } .ptable thead th.pt-red .ptable-period, .ptable thead th.pt-blue .ptable-period, .ptable thead th.pt-green .ptable-period { color:var(--ink-dim); } .ptable thead th .ptable-period { color:var(--ink-dim); } .ptable td.row-label { font-weight:600; color:var(--ink); font-size:15px; } .ptable td.cell { text-align:center; color:var(--ink-soft); font-size:14px; } .ptable td.cell.yes { color:var(--green); font-weight:700; } .ptable td.cell.no { color:var(--ink-dim); opacity:0.5; } .ptable td.cell.featured-col { background:rgba(45,104,196,0.02); } .ptable .ptable-cta-row td { padding-top:22px; padding-bottom:22px; background:var(--bg-soft); } .ptable .ptable-cta-row td.cell { text-align:center; } .ptable .ptable-cta-row .btn { padding:12px 20px; font-size:12px; width:auto; } .ptable-tag { display:inline-block; background:var(--bg-soft); color:var(--blue); font-size:10px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; padding:5px 12px; margin-bottom:10px; border:1px solid var(--line); } /* PROGRAM */ .program-intro { font-family:var(--sans); font-size:clamp(18px,2vw,24px); color:var(--ink-soft); max-width:40ch; margin-bottom:48px; line-height:1.45; font-weight:500; } .program-list { border-top:4px solid var(--blue); } .program-item { display:grid; grid-template-columns:70px 1.4fr 2fr 1.2fr; gap:32px; align-items:baseline; padding:28px 0; border-bottom:1px solid var(--line); transition:all 0.2s; cursor:default; } .program-item:hover { padding-left:10px; background:var(--bg-soft); } .program-num { font-family:var(--heading); font-weight:800; font-size:22px; font-style:normal; } .program-item:nth-child(4n+1) .program-num { color:var(--red); } .program-item:nth-child(4n+2) .program-num { color:var(--blue); } .program-item:nth-child(4n+3) .program-num { color:var(--green); } .program-item:nth-child(4n+4) .program-num { color:var(--yellow); } .program-title { font-family:var(--heading); font-size:clamp(20px,2.2vw,26px); font-weight:800; color:var(--ink); line-height:1.2; text-transform:uppercase; } .program-desc { font-size:15px; color:var(--ink-soft); line-height:1.55; } .program-artifact { font-family:var(--sans); font-weight:600; font-size:14px; color:var(--blue); text-align:right; } .program-item.tbd .program-title, .program-item.tbd .program-desc { color:var(--ink-dim); } /* ABOUT */ .about-top { display:grid; grid-template-columns:0.85fr 1.15fr; gap:72px; align-items:start; margin-bottom:88px; } .about-photo-wrap { position:relative; } .about-photo { width:100%; aspect-ratio:3/4; object-fit:cover; } .about-photo-caption { margin-top:16px; font-size:13px; color:var(--ink-dim); display:flex; justify-content:space-between; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; } .about-name { font-family:var(--heading); font-size:clamp(38px,5vw,68px); font-weight:900; line-height:1.0; margin-bottom:28px; text-transform:uppercase; } .about-lead { font-weight:500; font-size:clamp(20px,2.2vw,26px); line-height:1.35; color:var(--blue); margin-bottom:28px; } .about-bio p { color:var(--ink-soft); line-height:1.65; margin-bottom:14px; font-size:17px; } .about-roles { margin-top:32px; padding-top:24px; border-top:4px solid var(--red); display:flex; flex-direction:column; gap:12px; } .about-role { display:grid; grid-template-columns:18px 1fr; gap:14px; align-items:baseline; font-size:16px; color:var(--ink); line-height:1.4; } .about-role:nth-child(1)::before { content:''; width:16px; height:4px; background:var(--red); align-self:center; } .about-role:nth-child(2)::before { content:''; width:16px; height:4px; background:var(--blue); align-self:center; } .about-role:nth-child(3)::before { content:''; width:16px; height:4px; background:var(--green); align-self:center; } .about-role:nth-child(4)::before { content:''; width:16px; height:4px; background:var(--yellow); align-self:center; } /* STATS */ .about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:0; padding:0; border:3px solid var(--ink); margin-bottom:88px; } .about-stat { padding:40px 28px; border-right:1px solid var(--line); position:relative; } .about-stat:last-child { border-right:none; } .about-stat::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; } .about-stat:nth-child(1)::before { background:var(--red); } .about-stat:nth-child(2)::before { background:var(--blue); } .about-stat:nth-child(3)::before { background:var(--green); } .about-stat-num { font-family:var(--heading); font-size:clamp(52px,7vw,88px); font-weight:900; line-height:0.95; margin-bottom:14px; } .about-stat:nth-child(1) .about-stat-num { color:var(--red); } .about-stat:nth-child(2) .about-stat-num { color:var(--blue); } .about-stat:nth-child(3) .about-stat-num { color:var(--green); } .about-stat-num em { font-style:normal; } .about-stat-label { font-size:14px; color:var(--ink-soft); line-height:1.5; max-width:22ch; } /* CASES */ .cases-intro { max-width:50ch; margin-bottom:64px; font-size:clamp(20px,2.2vw,26px); line-height:1.4; color:rgba(255,255,255,0.7); font-weight:400; } .cases-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:2px solid rgba(255,255,255,0.15); overflow:hidden; } .case-card { padding:48px 36px; transition:background 0.3s; position:relative; border-right:1px solid rgba(255,255,255,0.1); } .case-card:last-child { border-right:none; } .case-card:hover { background:var(--dark-2); } .case-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; } .case-card:nth-child(1)::before { background:var(--red); } .case-card:nth-child(2)::before { background:var(--blue); } .case-card:nth-child(3)::before { background:var(--green); } .case-card h3 { color:#fff; margin-bottom:18px; font-size:clamp(22px,2.4vw,30px); } .case-card p { color:rgba(255,255,255,0.65); font-size:16px; line-height:1.6; } .case-tag { font-family:var(--heading); font-weight:800; font-size:14px; margin-bottom:16px; display:block; } .case-card:nth-child(1) .case-tag { color:var(--red); } .case-card:nth-child(2) .case-tag { color:var(--blue); } .case-card:nth-child(3) .case-tag { color:var(--green); } .cases-footer { font-family:var(--heading); font-size:clamp(22px,2.6vw,34px); color:#fff; line-height:1.25; max-width:30ch; margin-top:64px; font-weight:800; text-transform:uppercase; } .cases-footer em { color:var(--yellow); font-style:normal; } /* TESTIMONIALS */ .testimonials-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; gap:40px; flex-wrap:wrap; } .testimonials-header h2 { margin-bottom:0; } .testimonials-header h2 em { color:var(--red); } .testimonials-header-aside { font-size:18px; color:var(--ink-soft); max-width:30ch; line-height:1.45; text-align:right; font-weight:500; } .testimonials-grid { columns:2; column-gap:20px; } @media(max-width:860px){ .testimonials-grid{columns:1;} } .testimonial { background:#fff; border:3px solid var(--line); padding:36px 32px; margin-bottom:20px; break-inside:avoid; } .testimonial.featured { background:var(--dark); color:#fff; border-color:var(--dark); } .quote-mark { font-family:var(--heading); font-size:72px; line-height:0.5; display:block; margin-bottom:24px; font-weight:900; } .testimonial:nth-child(1) .quote-mark { color:var(--red); } .testimonial:nth-child(2) .quote-mark { color:var(--blue); } .testimonial:nth-child(3) .quote-mark { color:var(--green); } .testimonial:nth-child(4) .quote-mark { color:var(--yellow); } .t-text { font-size:17px; line-height:1.6; color:var(--ink); margin-bottom:24px; } .testimonial.featured .t-text { color:rgba(255,255,255,0.85); font-size:18px; } .t-meta { border-top:1px solid var(--line); padding-top:18px; } .testimonial.featured .t-meta { border-color:rgba(255,255,255,0.15); } .t-author { font-family:var(--heading); font-weight:800; font-size:15px; color:var(--ink); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.02em; } .testimonial.featured .t-author { color:#fff; } .t-role { font-size:13px; color:var(--ink-dim); } .testimonial.featured .t-role { color:rgba(255,255,255,0.5); } /* PHILOSOPHY */ .phil-grid { display:grid; grid-template-columns:0.7fr 1.3fr; gap:72px; align-items:start; } .phil-grid h2 { margin-bottom:0; } .phil-grid h2 em { color:var(--yellow); } .phil-text p { color:rgba(255,255,255,0.7); line-height:1.65; margin-bottom:20px; font-size:18px; } .phil-lead { font-weight:600 !important; font-size:clamp(22px,2.4vw,30px) !important; line-height:1.35 !important; color:var(--yellow) !important; margin-bottom:32px !important; } /* REGIONAL */ .regional-intro { max-width:54ch; margin-bottom:48px; font-size:clamp(18px,2vw,24px); color:var(--ink-soft); line-height:1.45; font-weight:500; } .regional-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; border:3px solid var(--ink); } .regional-card { padding:48px 44px; position:relative; } .regional-card:first-child { border-right:1px solid var(--line); } .regional-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; } .regional-card:nth-child(1)::before { background:var(--blue); } .regional-card:nth-child(2)::before { background:var(--green); } .regional-label { font-family:var(--heading); font-weight:800; font-size:14px; margin-bottom:20px; text-transform:uppercase; letter-spacing:0.04em; } .regional-card:nth-child(1) .regional-label { color:var(--blue); } .regional-card:nth-child(2) .regional-label { color:var(--green); } .regional-card h3 { margin-bottom:20px; text-transform:none; } .regional-card p { color:var(--ink-soft); line-height:1.65; font-size:16px; } /* UPK */ .upk-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:72px; align-items:center; } h2.upk { max-width:18ch; margin-bottom:24px; } h2.upk em { color:var(--green); } .upk-desc { color:rgba(255,255,255,0.7); font-size:18px; line-height:1.6; max-width:50ch; } .upk-price-box { text-align:center; padding:52px 32px; border:3px solid var(--green); background:rgba(0,155,72,0.08); } .upk-price-label { font-weight:700; font-size:14px; color:rgba(255,255,255,0.5); margin-bottom:16px; text-transform:uppercase; letter-spacing:0.1em; } .upk-price { font-family:var(--heading); font-size:clamp(52px,6.5vw,72px); font-weight:900; color:var(--green); margin-bottom:16px; line-height:0.95; } .upk-price-cond { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.5; } /* FAQ */ .faq-list { margin-top:48px; border-top:4px solid var(--red); } .faq-item { border-bottom:1px solid var(--line); } .faq-item.open { padding-bottom:4px; } .faq-question { display:flex; justify-content:space-between; align-items:center; padding:32px 0; cursor:pointer; gap:20px; transition:padding 0.2s; } .faq-item:hover .faq-question { padding-left:8px; } .faq-q-text { font-family:var(--heading); font-size:clamp(18px,2.2vw,26px); font-weight:800; color:var(--ink); line-height:1.2; text-transform:uppercase; } .faq-toggle { font-size:28px; font-weight:800; transition:transform 0.3s; flex-shrink:0; line-height:1; width:40px; height:40px; display:flex; align-items:center; justify-content:center; background:var(--red); color:#fff; } .faq-item.open .faq-toggle { transform:rotate(45deg); background:var(--blue); } .faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; } .faq-item.open .faq-answer { max-height:420px; } .faq-answer p { color:var(--ink-soft); line-height:1.7; padding-bottom:32px; max-width:68ch; font-size:17px; } .faq-answer a { color:var(--red); font-weight:600; } /* CONTACT */ .contact-card { background:var(--dark); padding:88px 72px; display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:center; position:relative; overflow:hidden; } .contact-deco { position:absolute; bottom:-40px; right:-40px; width:400px; height:400px; opacity:0.08; pointer-events:none; background-image: url("acdb1078-0376-49e9-9161-a1f16ea197e6"); background-size:cover; transform: rotate(10deg); } .contact-card h2 { color:#fff; margin-bottom:24px; position:relative; } .contact-card h2 em { color:var(--red); } .contact-card .cc-sub { color:rgba(255,255,255,0.65); font-size:18px; line-height:1.5; max-width:38ch; position:relative; } .contact-box { background:rgba(255,255,255,0.04); border:2px solid rgba(255,255,255,0.15); padding:36px; position:relative; } .cb-label { font-weight:700; font-size:14px; color:var(--red); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.06em; } .cb-name { font-family:var(--heading); font-size:28px; font-weight:800; color:#fff; margin-bottom:24px; text-transform:uppercase; } .contact-box a { display:flex; align-items:center; gap:14px; color:rgba(255,255,255,0.85); text-decoration:none; font-size:17px; padding:12px 0; border-top:1px solid rgba(255,255,255,0.1); transition:color 0.2s; } .contact-box a:hover { color:var(--yellow); } .contact-box a .ci { font-weight:700; color:var(--yellow); font-size:13px; width:65px; flex-shrink:0; text-transform:uppercase; letter-spacing:0.04em; } /* FOOTER */ footer { background:#fff; padding:72px 0 40px; border-top:3px solid var(--ink); } .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; margin-bottom:48px; } .footer-mark { font-family:var(--heading); font-weight:900; font-size:22px; margin-bottom:14px; text-transform:uppercase; line-height:1; } .footer-mark em { color:var(--red); font-style:normal; } .footer-tagline { color:var(--ink-soft); font-size:15px; max-width:38ch; line-height:1.55; } .footer-col h4 { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-dim); margin-bottom:20px; font-weight:700; } .footer-col a, .footer-col p { color:var(--ink-soft); font-size:15px; text-decoration:none; display:block; margin-bottom:10px; transition:color 0.2s; } .footer-col a:hover { color:var(--red); } .footer-col p.fc-name { color:var(--ink); font-weight:700; font-family:var(--heading); font-size:15px; margin-bottom:8px; text-transform:uppercase; } .footer-bottom { border-top:1px solid var(--line); padding-top:24px; font-size:13px; color:var(--ink-dim); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; } .footer-colors { display:flex; gap:4px; align-items:center; } .footer-color-dot { width:12px; height:12px; } /* PATTERN DECORATION */ .pattern-deco { position: absolute; pointer-events: none; z-index: 0; overflow: hidden; } .pattern-deco img { width:100%; height:100%; object-fit:cover; } /* REVEAL */ .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; } .reveal.visible { opacity:1; transform:translateY(0); } /* RESPONSIVE */ @media(max-width:980px){ section{padding:80px 0;} .about-top{grid-template-columns:1fr;gap:40px;} .about-photo{max-width:360px;} .about-stats{grid-template-columns:1fr;gap:0;} .about-stat{border-right:none;border-bottom:1px solid var(--line);padding:28px;} .about-stat:last-child{border-bottom:none;} .cases-grid{grid-template-columns:1fr;} .case-card{border-right:none !important;border-bottom:1px solid rgba(255,255,255,0.1);} .case-card:last-child{border-bottom:none;} .benefits-grid{grid-template-columns:1fr;} .benefit{border-right:none !important;border-bottom:1px solid var(--line) !important;} .benefit:last-child{border-bottom:none !important;} .phil-grid{grid-template-columns:1fr;gap:32px;} .regional-grid{grid-template-columns:1fr;} .regional-card:first-child{border-right:none;border-bottom:1px solid var(--line);} .upk-grid{grid-template-columns:1fr;gap:36px;} .program-item{grid-template-columns:45px 1fr;gap:16px;row-gap:6px;padding:22px 0;} .program-desc,.program-artifact{grid-column:2;text-align:left;} .testimonials-header{flex-direction:column;align-items:flex-start;} .testimonials-header-aside{text-align:left;} .footer-grid{grid-template-columns:1fr;gap:32px;} .contact-card{grid-template-columns:1fr;gap:40px;padding:48px 32px;} .hero-facts{grid-template-columns:1fr;gap:32px;} .hero{padding:44px 0 80px;} .container{padding:0 20px;} } @media(max-width:600px){ .hero-cta-row{flex-direction:column;align-items:stretch;} .hero-cta-row .btn{width:100%;justify-content:center;} .hero-cta-note{display:none;} .benefit,.testimonial,.regional-card{padding:28px 24px;} .contact-card{padding:40px 24px;} .contact-box{padding:28px 24px;} } 