/* NeuroKids — Premium University / College Palette Background : #F7F8FA (warm off-white, slightly grey) Surface : #FFFFFF Navy : #1B3A6B (primary text & dark elements) Blue : #2E6ED6 (interactive / brand accent) Blue-light : #EBF2FF (tinted surfaces) Orange : #F07C1A (CTA buttons — warm, sober) Muted : #6B7A8D (secondary text) */ :root { --ink: #1B3A6B; --paper: #F7F8FA; --white: #FFFFFF; --blue: #2E6ED6; --blue-lt: #EBF2FF; --orange: #F07C1A; --orange-lt: #FEF0E2; --muted: #6B7A8D; --border: rgba(27,58,107,.1); --shadow-sm: 0 2px 8px rgba(27,58,107,.07); --shadow-md: 0 8px 32px rgba(27,58,107,.10); --shadow-lg: 0 20px 60px rgba(27,58,107,.12); } *, *::before, *::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Inter', Arial, sans-serif; color: var(--ink); background: var(--paper); overflow-x: hidden; } body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .35; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 48px 48px; } button, a { font: inherit; } a { color: inherit; text-decoration: none; } button { cursor: pointer; } .container { width: min(100%, 1440px); margin: 0 auto; padding-inline: 40px; } .site-header { position: fixed; top: 16px; left: 0; right: 0; z-index: 20; padding: 0 40px; } .header-inner { height: 68px; width: min(100%, 1440px); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); } .brand { min-width: 200px; display: flex; align-items: center; gap: 10px; font-weight: 800; } .brand-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--blue-lt); border: 1px solid rgba(46,110,214,.2); overflow: hidden; } .brand-logo { width: 100%; height: 100%; object-fit: contain; } .brand-text { font-size: 22px; color: var(--ink); } .nav { display: flex; align-items: center; gap: 8px; } .nav a { padding: 10px 16px; border: 1px solid var(--border); border-radius: 12px; color: var(--muted); background: var(--paper); font-size: 14px; font-weight: 600; transition: color .2s, background .2s, border-color .2s; } .nav a:hover { color: var(--blue); background: var(--blue-lt); border-color: rgba(46,110,214,.2); } .header-phone { min-width: max-content; font-weight: 700; color: var(--ink); font-size: 15px; } .login, .header-cta { height: 46px; min-width: 180px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 0; border-radius: 12px; font-weight: 700; font-size: 14px; color: #fff; background: var(--orange); transition: background .2s, box-shadow .2s, transform .15s; } .login:hover, .header-cta:hover { background: #d96a0d; box-shadow: 0 6px 20px rgba(240,124,26,.28); transform: translateY(-1px); } .menu { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); } .menu span { display: block; width: 16px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; } .hero { position: relative; min-height: auto; padding-top: 132px; padding-bottom: 72px; overflow: hidden; background: var(--paper); } .code-orbit, .hero-footer { display: none; } .hero-media { position: relative; height: 440px; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: var(--blue-lt); box-shadow: var(--shadow-lg); } .hero-media::after { content: ""; position: absolute; inset: auto 0 0; height: 140px; background: linear-gradient(0deg, rgba(247,248,250,.95), rgba(247,248,250,0)); } .hero-track { position: absolute; inset: 0 auto 0 0; display: flex; align-items: stretch; gap: 0; width: max-content; animation: heroMarquee 15s linear infinite; } .hero-media:hover .hero-track { animation-play-state: paused; } .hero-card { position: relative; width: clamp(260px, 24vw, 370px); height: 100%; margin: 0; overflow: hidden; flex: 0 0 auto; border-left: 4px solid rgba(46,110,214,.25); transform: skewX(-4deg); } .hero-card:first-child { border-left: 0; } .hero-card-a { border-color: var(--blue); } .hero-card-b { border-color: var(--orange); } .hero-card-c { border-color: rgba(46,110,214,.4); } .hero-card-d { border-color: rgba(240,124,26,.4); } .hero-card img { width: 116%; height: 100%; display: block; object-fit: cover; object-position: center; transform: skewX(4deg) scale(1.08); transform-origin: center; } .bubble { position: absolute; z-index: 3; min-width: 140px; padding: 14px 18px; border: 1px solid var(--border); border-radius: 18px; color: var(--ink); background: rgba(255,255,255,.93); box-shadow: var(--shadow-md); text-align: center; animation: bubbleFloat 5.5s ease-in-out infinite; } .bubble strong { display: block; font-size: 20px; line-height: 1; color: var(--blue); } .bubble span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 700; } .bubble-1 { left: 7%; bottom: 34px; animation-delay: .25s; } .bubble-2 { left: 46%; bottom: 70px; animation-delay: .45s; } .bubble-3 { right: 7%; bottom: 42px; animation-delay: .7s; } .bubble-certified { border: 0 !important; background: rgba(255,255,255,.96) !important; box-shadow: 0 8px 28px rgba(27,58,107,.14) !important; animation: bubbleFloat 5s ease-in-out infinite !important; } .bubble-certified::before { display: none !important; } .hero h1 { position: relative; z-index: 2; margin: 32px auto 24px; max-width: 1000px; text-align: center; font-size: clamp(40px, 6vw, 76px); line-height: .96; letter-spacing: -.01em; color: var(--ink); } .hero h1 span { display: block; } .hero-accent { display: inline-block !important; width: auto !important; max-width: 100%; margin-left: auto; margin-right: auto; padding: .02em .1em .06em; border-radius: .05em; color: var(--white) !important; -webkit-text-fill-color: var(--white) !important; background: var(--blue) !important; -webkit-background-clip: border-box !important; background-clip: border-box !important; text-shadow: 0 2px 12px rgba(27,58,107,.18); -webkit-text-stroke: 0 !important; box-shadow: 0 4px 20px rgba(46,110,214,.22); transform: rotate(-.25deg); } .hero-accent .accent-line { display: inline !important; color: inherit !important; -webkit-text-fill-color: inherit !important; background: none !important; } .hero-accent .accent-line + .accent-line::before { content: " "; } .join-panel { position: relative; z-index: 2; width: min(100%, 720px); min-height: 104px; margin: 0 auto; padding: 18px; display: flex; align-items: center; gap: 20px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); } .join-button, .join-panel button { width: 260px; max-width: 100%; height: 60px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; flex: 0 0 auto; border: 0; border-radius: 16px; font-weight: 800; font-size: 15px; color: #fff; background: var(--orange); box-shadow: 0 8px 24px rgba(240,124,26,.22); animation: ctaPulse 1.65s ease-in-out infinite; line-height: 1.1; text-align: center; } .join-panel strong { display: block; font-size: 18px; color: var(--ink); } .join-panel span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; } .benefit-strip { position: relative; z-index: 2; width: min(100% - 32px, 1440px); margin: 108px auto 16px; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); } .benefit-track { display: flex; width: max-content; gap: 12px; padding: 12px; animation: benefitMarquee 24s linear infinite; } .benefit-track span { flex: 0 0 auto; padding: 10px 16px; border-radius: 999px; color: var(--ink); background: var(--white); border: 1px solid var(--border); font-weight: 700; font-size: 14px; } .platform { padding-top: 80px; padding-bottom: 88px; background: transparent; color: var(--ink); } .section-title { width: min(100%, 820px); margin: 0 auto 32px; text-align: center; } .section-title span { display: block; font-weight: 900; line-height: 1.04; } .section-title span:first-child { font-size: clamp(14px, 2vw, 18px); color: var(--blue); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; } .section-title span:last-child { font-size: clamp(28px, 3.8vw, 48px); color: var(--ink); margin-top: 6px; } .section-title p { color: var(--muted); font-size: 16px; line-height: 1.55; font-weight: 600; margin: 16px 0 0; } .course-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; } .course-card { min-height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; border-radius: 20px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; } .course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); } .course-card i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-lt); color: var(--blue); } .course-card svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } .course-card b { color: var(--ink); font-size: 26px; line-height: 1.08; } .course-card span { color: var(--muted); font-size: 15px; line-height: 1.5; font-weight: 600; } .trial-output { position: relative; overflow: hidden; padding: 80px 0 88px; color: var(--ink); background: var(--blue-lt); } .trial-output::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 40px 40px; opacity: .5; pointer-events: none; } .trial-output .container { position: relative; z-index: 1; } .trial-output-head { width: min(100%, 1120px); margin: 0 auto 24px; text-align: left; } .trial-output-head h2, .trial-output h2 { width: auto; margin: 0; color: var(--ink); font-size: clamp(26px, 3vw, 40px); line-height: 1.08; font-weight: 900; } .trial-output-panel { width: min(100%, 1120px); margin: 0 auto; padding: 28px; border-radius: 20px; background: rgba(255,255,255,.92); border: 1px solid var(--border); box-shadow: var(--shadow-md); } .trial-output-list { display: grid; gap: 14px; } .trial-output-card { min-height: 0; display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 14px; padding: 18px 22px; border-radius: 14px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); } .trial-output-card::before { display: none; } .trial-output-number { width: auto; height: auto; color: var(--blue); background: transparent; box-shadow: none; font-size: 26px; font-weight: 950; line-height: 1; } .trial-output-card h3 { margin: 0 0 6px; color: var(--ink); font-size: 16px; line-height: 1.2; font-weight: 800; } .trial-output-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 600; } .trial-output-copy span { display: none; } .trial-output-important { border-color: rgba(240,124,26,.35) !important; background: linear-gradient(90deg, rgba(240,124,26,.08), rgba(255,255,255,.98) 40%), #fff !important; box-shadow: 0 0 0 1px rgba(240,124,26,.15), var(--shadow-sm) !important; } .trial-output-important .trial-output-number { color: #fff !important; width: 38px !important; height: 38px !important; display: grid !important; place-items: center; border-radius: 12px; background: var(--orange) !important; box-shadow: 0 8px 20px rgba(240,124,26,.22) !important; font-size: 20px !important; } .important-label { display: inline-flex; margin-right: 8px; padding: 3px 8px; border-radius: 999px; color: #fff; background: var(--orange); font-size: 10px; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; } .trial-output-note { margin-top: 18px; padding: 16px 20px; display: grid; grid-template-columns: 30px minmax(0,1fr); align-items: center; gap: 12px; border-radius: 12px; color: var(--ink); background: var(--blue-lt); border: 1px solid rgba(46,110,214,.18); } .trial-output-note svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } .trial-output-note p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.5; font-weight: 700; } .trial-cta { width: 100%; min-width: 0; height: 60px; margin: 22px 0 0; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-weight: 800; color: #fff; background: var(--orange); border: 0; box-shadow: 0 10px 28px rgba(240,124,26,.22); animation: ctaPulseMobile 1.65s ease-in-out infinite; } .feedback { padding-top: 80px; padding-bottom: 80px; color: var(--ink); background: var(--white); } .feedback h2 { margin: 0 auto 20px; text-align: left; } .feedback h2 span { display: block; font-size: clamp(28px, 3.8vw, 48px); font-weight: 900; line-height: 1.04; } .feedback h2 span:first-child { color: var(--blue); font-size: clamp(13px, 1.4vw, 17px); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; } .feedback h2 span:last-child { color: var(--ink); } .feedback-head { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 24px; align-items: end; } .feedback-head p { margin: 0 0 48px; color: var(--muted); line-height: 1.55; font-weight: 600; } .student-videos { display: grid; grid-template-columns: 1.1fr .95fr .95fr; gap: 18px; margin-top: 20px; } .student-video { position: relative; min-height: 400px; overflow: hidden; border-radius: 20px; border: 1px solid var(--border); background: var(--ink); box-shadow: var(--shadow-md); } .student-video:first-child { min-height: 460px; } .student-video img { width: 100%; height: 100%; min-height: inherit; display: block; object-fit: cover; object-position: center; opacity: .85; transform: scale(1.04); transition: transform .75s ease, opacity .75s ease; } .student-video:hover img { opacity: .95; transform: scale(1.1); } .student-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(27,58,107,.88), rgba(27,58,107,.06) 60%); pointer-events: none; } .video-play { position: absolute; z-index: 2; left: 20px; top: 20px; width: 60px; height: 60px; border: 0; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-md); } .video-play::after { content: ""; position: absolute; left: 24px; top: 19px; border-left: 18px solid var(--blue); border-top: 12px solid transparent; border-bottom: 12px solid transparent; } .video-info { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; color: #fff; } .video-info span { display: inline-flex; margin-bottom: 10px; padding: 7px 12px; border-radius: 10px; color: var(--ink); background: rgba(255,255,255,.93); font-weight: 800; font-size: 13px; } .video-info strong { display: block; font-size: 26px; line-height: 1; } .video-info p { max-width: 340px; margin: 10px 0 0; color: rgba(235,242,255,.82); line-height: 1.45; font-size: 14px; font-weight: 600; } .review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 24px; } .review-card { padding: 22px; border-radius: 18px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow .22s; } .review-card:hover { box-shadow: var(--shadow-md); } .review-card span { display: inline-flex; margin-bottom: 14px; padding: 6px 12px; border-radius: 999px; color: #fff; background: #2dbd6e; font-weight: 800; font-size: 13px; } .review-card p { margin: 0 0 14px; color: var(--ink); line-height: 1.55; font-weight: 600; font-size: 15px; } .review-card strong { color: var(--muted); font-size: 13px; } .lead-capture { padding: 80px 0; color: #fff; background: linear-gradient(135deg, #1B3A6B, #1e4d9c); } .lead-capture-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,520px); align-items: center; gap: 40px; justify-content: flex-start !important; text-align: left !important; } .lead-capture-copy { margin-left: 0 !important; margin-right: 0 !important; } .lead-capture-copy h2 { margin: 0 0 14px; color: #fff; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.02; text-align: left !important; } .lead-capture-copy p { max-width: 560px; margin: 0; color: rgba(235,242,255,.76); font-size: 17px; line-height: 1.5; text-align: left !important; margin-left: 0 !important; margin-right: auto !important; } .lead-capture .lead-form { background: #fff; border-radius: 20px; } .contacts { padding-top: 72px; padding-bottom: 72px; color: var(--ink); background: var(--paper); } .contact-card { min-height: 170px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-radius: 20px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); } .contact-card strong { font-size: 26px; line-height: 1; color: var(--ink); } .contact-card > a { color: var(--blue); font-weight: 700; } .contact-links { display: flex; gap: 8px; flex-wrap: wrap; } .contact-links a { padding: 11px 16px; display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; font-weight: 700; font-size: 14px; } .social-icon svg, .contact-icon svg { width: 20px; height: 20px; fill: currentColor; } .social-icon.youtube, .contact-icon.youtube { background: #ff0033; color: #fff; } .social-icon.tiktok, .contact-icon.tiktok { background: #101827; color: #fff; } .social-icon.instagram, .contact-icon.instagram { background: linear-gradient(135deg,#ffb13b,#ff5ebc,#8b6cff); color: #fff; } .social-icon.twogis, .contact-icon.twogis { background: #22b14c; color: #fff; } .contact-icon.mail { background: var(--blue); color: #fff; } .twogis-logo { display: inline-grid; place-items: center; min-width: 24px; height: 16px; padding: 0 2px; border-radius: 3px; color: #22b14c; background: #fff; font-size: 7px; line-height: 1; font-weight: 900; } .map-card { min-height: 340px; margin-top: 18px; display: grid; grid-template-columns: 320px minmax(0,1fr); overflow: hidden; border-radius: 20px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); } .map-copy { padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--ink), #1e4d9c); color: #fff; } .map-copy span { width: fit-content; padding: 7px 12px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.92); font-size: 12px; font-weight: 800; text-transform: uppercase; } .map-copy strong { font-size: 26px; line-height: 1.1; } .map-copy a { width: fit-content; color: rgba(235,242,255,.85); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; } .map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; } .site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); color: rgba(235,242,255,.7); } .footer-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; font-weight: 600; } .footer-inner a { color: rgba(235,242,255,.9); font-weight: 700; } .footer-bottom { padding: 12px 40px 24px; font-size: 13px; color: rgba(235,242,255,.45); } .video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; } .video-modal.is-open { display: flex; } .video-modal__backdrop { position: absolute; inset: 0; background: rgba(27,58,107,.72); backdrop-filter: blur(10px); } .video-modal__dialog { position: relative; z-index: 1; width: min(100%, 960px); border-radius: 24px; background: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.3); } .video-modal__frame { position: relative; overflow: hidden; aspect-ratio: 16/9; border-radius: 24px; } .video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; } .video-modal__close { position: absolute; z-index: 2; top: -16px; right: -16px; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--orange); } .video-modal__close::before, .video-modal__close::after { content: ""; position: absolute; left: 12px; top: 21px; width: 20px; height: 2px; border-radius: 2px; background: #fff; } .video-modal__close::before { transform: rotate(45deg); } .video-modal__close::after { transform: rotate(-45deg); } .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); } .reveal.is-visible { opacity: 1; transform: translateY(0); } @keyframes heroMarquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } } @keyframes bubbleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } } @keyframes benefitMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } @keyframes ctaPulse { 0%,100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(240,124,26,.45), 0 10px 28px rgba(240,124,26,.2); } 50% { transform: translateY(-2px) scale(1.035); box-shadow: 0 0 0 14px rgba(240,124,26,0), 0 18px 40px rgba(240,124,26,.3); } } @keyframes ctaPulseMobile { 0%,100% { box-shadow: 0 0 0 0 rgba(240,124,26,.45), 0 8px 22px rgba(240,124,26,.2); } 50% { box-shadow: 0 0 0 10px rgba(240,124,26,0), 0 16px 34px rgba(240,124,26,.3); } } #courses { width: min(100%,1180px) !important; padding-top: 56px !important; padding-bottom: 96px !important; } #courses .section-title { width: min(100%,560px) !important; margin: 0 0 32px !important; text-align: left !important; } #courses .section-title span:first-child { color: var(--blue) !important; } #courses .section-title span:last-child { color: var(--ink) !important; } #courses .section-title p { width: min(100%,520px) !important; margin: 16px 0 0 !important; color: var(--muted) !important; font-size: 15px !important; line-height: 1.55 !important; font-weight: 600 !important; } #courses .course-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0,1fr)) !important; gap: 16px !important; } #courses .course-card { min-height: 300px !important; padding: 0 !important; overflow: hidden !important; display: grid !important; grid-template-rows: 128px 1fr !important; gap: 0 !important; border-radius: 16px !important; text-align: left !important; align-items: stretch !important; } #courses .course-card i { width: 100% !important; height: 100% !important; border-radius: 0 !important; background: var(--blue-lt) !important; color: var(--blue) !important; box-shadow: none !important; } #courses .course-card i svg { width: 44px !important; height: 44px !important; } #courses .course-card b { padding: 20px 20px 0 !important; font-size: 17px !important; line-height: 1.2 !important; color: var(--ink) !important; } #courses .course-card span { padding: 10px 20px 22px !important; font-size: 13px !important; line-height: 1.5 !important; color: var(--muted) !important; } @media (max-width: 999px) { .container { padding-inline: 16px; } .site-header { top: 10px; left: 12px; right: 12px; padding: 0; } .header-inner { width: 100%; max-width: calc(100vw - 24px); height: 58px; padding: 0 10px 0 12px; gap: 8px; justify-content: flex-start; } .brand { min-width: auto; } .brand-mark { width: 42px; height: 42px; } .brand-text { font-size: 18px; } .nav, .header-phone { display: none; } .menu { display: block; position: static; flex: 0 0 42px; margin-left: auto; z-index: 2; } .login, .header-cta { position: fixed !important; top: 18px !important; right: 12px !important; min-width: 0; width: 120px; height: 40px; padding: 0 12px; border-radius: 12px; font-size: 12px; line-height: 1.1; text-align: center; white-space: normal; z-index: 30 !important; } .hero { padding-top: 104px !important; padding-bottom: 52px !important; } .hero-media { height: 340px; border-radius: 20px; } .hero h1 { width: min(100%,360px); margin-left: auto; margin-right: auto; font-size: clamp(28px,8vw,34px); text-align: center; } .hero-accent { max-width: calc(100vw - 60px) !important; font-size: clamp(22px,7vw,28px) !important; } .hero-accent .accent-line { display: block !important; } .hero-accent .accent-line + .accent-line::before { content: ""; } .join-panel { width: 100%; flex-direction: column; text-align: center; } .join-button, .join-panel button { width: 100%; max-width: 280px; min-height: 60px; } .benefit-strip { width: min(100% - 24px, 400px); margin-top: 78px; border-radius: 16px; } .benefit-track { gap: 8px; padding: 10px; animation-duration: 18s; } .benefit-track span { padding: 9px 14px; font-size: 13px; } .course-grid, .review-grid, .lead-capture-inner { grid-template-columns: 1fr; } .platform, .feedback, .lead-capture, .contacts { padding-top: 60px; padding-bottom: 60px; } .course-card { min-height: 0; padding: 20px; border-radius: 18px; text-align: center; align-items: center; } .course-card b { font-size: 22px; } .course-card span { font-size: 14px; } .feedback-head { display: block; } .feedback-head h2 { text-align: center; } .feedback-head p { margin: 0 auto 36px; text-align: center; } .student-videos { grid-template-columns: 1fr; margin-top: 16px; } .student-video, .student-video:first-child { min-height: 320px; border-radius: 18px; } .review-grid { grid-template-columns: 1fr; } .lead-capture-inner { grid-template-columns: 1fr; text-align: center !important; justify-content: center !important; } .lead-capture-copy h2, .lead-capture-copy p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; } .contact-card { flex-direction: column; text-align: center; border-radius: 18px; } .contact-links a { width: 100%; justify-content: center; } .map-card { grid-template-columns: 1fr; border-radius: 18px; } .map-card iframe { min-height: 280px; } .trial-output-panel { padding: 14px; } .trial-output-card { grid-template-columns: 36px minmax(0,1fr); gap: 8px; padding: 14px 12px; } .trial-output-number { font-size: 22px; } .trial-output-card h3 { font-size: 14px; } .trial-output-card p { font-size: 12px; } .trial-cta { min-height: 58px; height: auto; padding: 14px 18px; border-radius: 12px; } .footer-inner { flex-direction: column; justify-content: center; text-align: center; min-height: 96px; } .footer-bottom { padding: 8px 16px 20px; } #courses { width: min(100%,440px) !important; padding-top: 40px !important; padding-bottom: 68px !important; } #courses .section-title { max-width: 360px !important; margin-left: auto !important; margin-right: auto !important; text-align: left !important; } #courses .course-grid { grid-template-columns: 1fr !important; gap: 14px !important; } #courses .course-card { min-height: 0 !important; grid-template-rows: 112px 1fr !important; } .video-modal { padding: 12px; } .video-modal__dialog, .video-modal__frame { border-radius: 16px; } .video-modal__close { top: -48px; right: 0; } }
Made on
Tilda