/* Szkoła Jazdy — main stylesheet */
:root{
  --red:#C8102E;
  --red-dark:#A10D24;
  --dark:#1A1A1E;
  --dark-2:#262629;
  --dark-3:#232326;
  --gray-bg:#F4F4F5;
  --border:#E4E4E7;
  --gray-text:#6B7280;
  --light-text:#c9c9cd;
  --muted:#8a8a90;
  --green:#16a34a;
  --font-body: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0;background:#fff;font-family:var(--font-body);color:var(--dark);}
a{color:var(--red);text-decoration:none;}
a:hover{color:var(--red-dark);}
img{max-width:100%;display:block;}
button{font-family:inherit;}
h1,h2,h3{font-family:var(--font-head);font-stretch:condensed;letter-spacing:0.2px;}

.container{max-width:1120px;margin:0 auto;padding:0 24px;}

/* Top bar */
.topbar{background:var(--red);color:#fff;font-size:13px;padding:8px 24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;}
.topbar a{color:#fff;}
.topbar .tb-left{display:flex;gap:18px;flex-wrap:wrap;}

/* Header */
.site-header{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-bottom:1px solid var(--border);position:relative;}
.logo{font-family:var(--font-head);font-weight:800;font-size:26px;color:var(--dark);letter-spacing:0.5px;}
.logo span{color:var(--red);}
.main-nav{display:flex;gap:20px;font-size:14px;font-weight:600;flex-wrap:wrap;}
.main-nav a{color:var(--dark);}
.main-nav a.active{color:var(--red);}
.header-actions{display:flex;align-items:center;gap:16px;}
.cart-link{position:relative;font-weight:700;color:var(--dark);font-size:14px;cursor:pointer;}
.cart-badge{position:absolute;top:-10px;right:-16px;background:var(--red);color:#fff;font-size:11px;border-radius:10px;padding:1px 6px;display:none;}
.cart-badge.show{display:inline-block;}
.btn{display:inline-block;background:var(--red);color:#fff;padding:10px 18px;border-radius:6px;font-weight:700;font-size:14px;border:none;cursor:pointer;}
.btn:hover{background:var(--red-dark);color:#fff;}
.btn-lg{padding:14px 26px;font-size:15px;}
.btn-dark{background:var(--dark);}
.btn-outline{background:transparent;border:1px solid #6B7280;color:#fff;}
.btn-outline:hover{color:#fff;border-color:#fff;}
.btn-white{background:#fff;color:var(--red);}
.btn-white:hover{background:#f4f4f5;color:var(--red-dark);}
.nav-toggle{display:none;background:none;border:none;font-size:26px;cursor:pointer;color:var(--dark);}

/* Hero */
.hero{position:relative;background:var(--dark);color:#fff;padding:80px 24px 100px;overflow:hidden;}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;height:8px;background:repeating-linear-gradient(90deg,#fff 0 32px,transparent 32px 64px);opacity:0.15;}
.hero-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;align-items:center;}
.badge-eyebrow{display:inline-block;background:var(--red);color:#fff;font-size:13px;font-weight:700;padding:6px 14px;border-radius:4px;margin-bottom:20px;}
.hero h1{font-size:56px;font-weight:800;line-height:1.05;margin:0 0 20px;}
.hero p{font-size:18px;color:var(--light-text);line-height:1.6;max-width:520px;margin:0 0 32px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.hero-photo{border-radius:14px;height:340px;overflow:hidden;}
.hero-photo img{width:100%;height:100%;object-fit:cover;}

/* Page hero (inner pages) */
.page-hero{background:var(--dark);padding:56px 24px;}
.page-hero .container{max-width:1120px;}
.page-hero h1{font-size:44px;font-weight:800;margin:0 0 12px;color:#fff;}
.page-hero p{color:var(--light-text);font-size:16px;max-width:640px;margin:0;}
.page-hero.narrow{padding:48px 24px;}
.page-hero.narrow h1{font-size:38px;}
.page-hero.narrow .container{max-width:820px;}

/* Stats */
.stats{padding:36px 24px;background:var(--gray-bg);}
.stats-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;}
.stats-grid .num{font-family:var(--font-head);font-size:38px;font-weight:800;color:var(--red);}
.stats-grid .label{font-size:14px;color:var(--gray-text);font-weight:600;margin-top:4px;}

/* Section titles */
.section{padding:80px 24px;max-width:1120px;margin:0 auto;}
.section-title{font-size:36px;font-weight:800;text-align:center;margin:0 0 12px;}
.section-sub{text-align:center;color:var(--gray-text);max-width:600px;margin:0 auto 48px;font-size:16px;}
.section-head-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:32px;flex-wrap:wrap;gap:12px;}
.section-head-row h2{font-size:32px;font-weight:800;margin:0;}
.section-head-row .more{font-weight:700;font-size:14px;}

/* Services */
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.service-card{display:block;border:1px solid var(--border);border-radius:10px;padding:28px 22px;color:var(--dark);}
.service-mark{width:44px;height:44px;background:var(--red);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:18px;margin-bottom:16px;}
.service-title{font-weight:700;font-size:18px;margin-bottom:8px;}
.service-desc{font-size:14px;color:var(--gray-text);line-height:1.5;}

/* Categories dark strip */
.cat-strip{padding:70px 24px;background:var(--dark);}
.cat-strip h2{color:#fff;font-size:32px;font-weight:800;margin:0 0 32px;}
.cat-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:12px;}
.cat-tile{background:var(--dark-2);border-radius:8px;padding:18px 10px;text-align:center;color:#fff;}
.cat-code{font-family:var(--font-head);font-size:24px;font-weight:800;color:var(--red);}
.cat-name{font-size:12px;color:var(--light-text);margin-top:4px;}

/* Why us */
.why-section{padding:80px 24px;max-width:1120px;margin:0 auto;display:grid;grid-template-columns:0.9fr 1.1fr;gap:56px;align-items:center;}
.why-photo{border-radius:12px;height:380px;overflow:hidden;}
.why-photo img{width:100%;height:100%;object-fit:cover;}
.why-section h2{font-size:32px;font-weight:800;margin:0 0 20px;}
.reasons{display:flex;flex-direction:column;gap:16px;}
.reason{display:flex;gap:12px;align-items:flex-start;}
.reason .check{width:22px;height:22px;border-radius:50%;background:var(--red);color:#fff;font-size:13px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;}
.reason-text{font-size:15px;color:var(--dark);line-height:1.5;}

/* Product / shop cards */
.shop-preview{padding:70px 24px;background:var(--gray-bg);}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.product-card{background:#fff;border:1px solid var(--border);border-radius:10px;overflow:hidden;display:flex;flex-direction:column;}
.product-photo{height:150px;overflow:hidden;background:var(--gray-bg);}
.product-photo img{width:100%;height:100%;object-fit:cover;}
.product-body{padding:18px;display:flex;flex-direction:column;flex:1;}
.product-cat{font-size:12px;color:var(--red);font-weight:700;text-transform:uppercase;margin-bottom:6px;}
.product-name{font-weight:700;font-size:15px;margin-bottom:6px;}
.product-desc{font-size:13px;color:var(--gray-text);line-height:1.5;margin-bottom:14px;flex:1;}
.product-foot{display:flex;justify-content:space-between;align-items:center;}
.product-price{color:var(--red);font-weight:800;font-size:17px;}

/* Testimonials */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.testimonial{background:var(--gray-bg);border-radius:10px;padding:26px;}
.stars{color:var(--red);font-size:15px;margin-bottom:12px;}
.quote{font-size:14px;line-height:1.6;color:var(--dark);margin-bottom:16px;}
.author{font-weight:700;font-size:14px;}

/* Tips list */
.tips-section{padding:70px 24px;background:var(--gray-bg);}
.tips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.tip-card{display:block;background:#fff;border:1px solid var(--border);border-radius:10px;padding:22px;color:var(--dark);}
.tip-tag{font-size:12px;color:var(--red);font-weight:700;margin-bottom:8px;text-transform:uppercase;}
.tip-title{font-weight:700;font-size:16px;margin-bottom:8px;}
.tip-excerpt{font-size:14px;color:var(--gray-text);line-height:1.5;}

/* CTA band */
.cta-band{background:var(--red);padding:60px 24px;text-align:center;}
.cta-band h2{color:#fff;font-size:34px;font-weight:800;margin:0 0 16px;}
.cta-band p{color:#ffe1e4;font-size:16px;margin:0 0 28px;}

/* Footer */
.site-footer{background:var(--dark);color:var(--light-text);padding:56px 24px 24px;}
.footer-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:36px;}
.footer-logo{font-family:var(--font-head);font-weight:800;font-size:22px;color:#fff;margin-bottom:12px;}
.footer-logo span{color:var(--red);}
.footer-desc{font-size:14px;line-height:1.6;color:var(--muted);max-width:280px;}
.footer-col-title{color:#fff;font-weight:700;margin-bottom:14px;font-size:14px;}
.footer-links{display:flex;flex-direction:column;gap:10px;font-size:14px;}
.footer-links a{color:var(--light-text);}
.footer-contact{font-size:14px;line-height:1.8;color:var(--muted);}
.footer-bottom{max-width:1120px;margin:40px auto 0;border-top:1px solid #333336;padding-top:20px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:13px;color:var(--muted);}
.footer-bottom-links{display:flex;gap:18px;flex-wrap:wrap;}
.footer-bottom-links a{color:var(--muted);}
.footer-simple{background:var(--dark);color:var(--light-text);padding:40px 24px;}
.footer-simple-row{max-width:1120px;margin:0 auto;display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;font-size:13px;color:var(--muted);}
.footer-simple-row a{color:var(--muted);}
.footer-simple-links{display:flex;gap:18px;flex-wrap:wrap;}

/* Cookie banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#fff;border-top:2px solid var(--red);padding:16px 24px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;box-shadow:0 -4px 16px rgba(0,0,0,0.08);z-index:50;}
.cookie-banner p{font-size:13px;color:var(--dark);max-width:700px;margin:0;}
.cookie-banner.hidden{display:none;}

/* Legal pages */
.legal-content{padding:56px 24px;max-width:820px;margin:0 auto;font-size:15px;line-height:1.75;color:#333336;}
.legal-content .updated{color:var(--gray-text);font-size:13px;}
.legal-content h2{font-size:22px;font-weight:800;color:var(--dark);margin-top:32px;}

/* Categories page */
.cat-list{display:flex;flex-direction:column;gap:16px;}
.cat-row{border:1px solid var(--border);border-radius:10px;padding:26px;display:grid;grid-template-columns:90px 1fr auto;gap:24px;align-items:center;}
.cat-row .code{font-family:var(--font-head);font-size:44px;font-weight:800;color:var(--red);text-align:center;}
.cat-row .title{font-weight:700;font-size:17px;margin-bottom:4px;}
.cat-row .desc{font-size:14px;color:var(--gray-text);line-height:1.5;}
.cat-row .age{font-size:13px;color:var(--dark);margin-top:8px;}
.cta-simple{padding:56px 24px;background:var(--gray-bg);text-align:center;}
.cta-simple h2{font-size:26px;font-weight:800;margin:0 0 12px;}
.cta-simple p{color:var(--gray-text);margin:0 0 24px;}

/* Nauka steps */
.steps-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px;}
.step-card{border:1px solid var(--border);border-radius:10px;padding:20px 16px;}
.step-num{font-family:var(--font-head);font-size:28px;font-weight:800;color:var(--red);margin-bottom:10px;}
.step-title{font-weight:700;font-size:14px;margin-bottom:6px;}
.step-desc{font-size:13px;color:var(--gray-text);line-height:1.5;}

/* Packages */
.packages-section{padding:70px 24px;background:var(--gray-bg);}
.packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.package-card{background:#fff;border-radius:12px;padding:32px;border:2px solid var(--border);position:relative;}
.package-card.highlight{border-color:var(--red);}
.package-badge{position:absolute;top:-12px;right:20px;background:var(--red);color:#fff;font-size:12px;font-weight:700;padding:4px 12px;border-radius:4px;}
.package-name{font-weight:700;font-size:20px;margin-bottom:6px;}
.package-price{font-family:var(--font-head);font-size:36px;font-weight:800;color:var(--red);margin-bottom:16px;}
.package-features{display:flex;flex-direction:column;gap:10px;margin-bottom:24px;}
.package-features div{font-size:14px;display:flex;gap:8px;}
.package-features span{color:var(--red);}
.package-card .btn{display:block;text-align:center;width:100%;}

/* FAQ */
.faq-section{padding:70px 24px;max-width:800px;margin:0 auto;}
.faq-list{display:flex;flex-direction:column;gap:10px;}
.faq-item{border:1px solid var(--border);border-radius:8px;padding:18px 20px;cursor:pointer;}
.faq-q{display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:15px;}
.faq-toggle-icon::after{content:'+';}
.faq-item.open .faq-toggle-icon::after{content:'\2212';}
.article-cta::after{content:'Czytaj więcej →';}
.article-card.open .article-cta::after{content:'Zwiń ↑';}
.faq-a{font-size:14px;color:var(--gray-text);margin-top:10px;line-height:1.6;display:none;}
.faq-item.open .faq-a{display:block;}

/* Teoria */
.topics-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.topic-card{border:1px solid var(--border);border-radius:10px;padding:24px;}
.topic-num{font-family:var(--font-head);font-size:15px;font-weight:800;color:var(--red);margin-bottom:10px;}
.topic-title{font-weight:700;font-size:17px;margin-bottom:10px;}
.topic-desc{font-size:14px;color:var(--gray-text);line-height:1.6;}
.study-section{padding:60px 24px;background:var(--gray-bg);}
.study-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
.study-grid h2{font-size:30px;font-weight:800;margin:0 0 16px;}
.study-tips{display:flex;flex-direction:column;gap:14px;}
.study-tip{display:flex;gap:10px;font-size:15px;line-height:1.5;}
.study-tip span{color:var(--red);font-weight:800;}
.study-photo{border-radius:12px;height:300px;overflow:hidden;}
.study-photo img{width:100%;height:100%;object-fit:cover;}
.dark-banner{padding:70px 24px;max-width:1120px;margin:0 auto;}
.dark-banner-inner{background:var(--dark);border-radius:14px;padding:44px;display:grid;grid-template-columns:1.3fr 0.7fr;gap:32px;align-items:center;}
.dark-banner h2{color:#fff;font-size:28px;font-weight:800;margin:0 0 12px;}
.dark-banner p{color:var(--light-text);font-size:15px;margin:0;}
.dark-banner-actions{display:flex;flex-direction:column;gap:12px;}
.dark-banner-actions .btn{text-align:center;}

/* Testy quiz */
.quiz-section{padding:60px 24px;max-width:760px;margin:0 auto;}
.quiz-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;}
.quiz-top .qnum{font-weight:700;font-size:15px;}
.quiz-top .qscore{font-weight:800;color:var(--red);}
.progress-track{height:6px;background:var(--border);border-radius:3px;margin-bottom:32px;overflow:hidden;}
.progress-fill{height:100%;background:var(--red);width:0%;transition:width .3s;}
.quiz-card{border:1px solid var(--border);border-radius:10px;padding:28px;}
.quiz-question{font-weight:700;font-size:18px;margin-bottom:20px;line-height:1.4;}
.quiz-options{display:flex;flex-direction:column;gap:10px;}
.quiz-option{border:2px solid var(--border);background:#fff;border-radius:8px;padding:14px 16px;cursor:pointer;font-size:15px;}
.quiz-option.correct{border-color:var(--green);background:#f0fdf4;}
.quiz-option.wrong{border-color:var(--red);background:#fef2f2;}
.quiz-result{border:1px solid var(--border);border-radius:10px;padding:36px;text-align:center;}
.quiz-result .score{font-family:var(--font-head);font-size:40px;font-weight:800;color:var(--red);margin-bottom:10px;}
.quiz-result .msg{font-size:15px;color:var(--gray-text);margin-bottom:24px;}
.quiz-result .btn{margin-right:10px;}
.exam-tips{display:flex;flex-direction:column;gap:12px;}
.exam-tip{background:#fff;border-radius:8px;padding:16px;font-size:14px;display:flex;gap:10px;}
.exam-tip span{color:var(--red);font-weight:800;}

/* Zajecia praktyczne */
.fleet-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.fleet-card{border:1px solid var(--border);border-radius:10px;overflow:hidden;}
.fleet-photo{height:170px;overflow:hidden;}
.fleet-photo img{width:100%;height:100%;object-fit:cover;}
.fleet-body{padding:20px;}
.fleet-model{font-weight:700;font-size:17px;margin-bottom:6px;}
.fleet-spec{font-size:13px;color:var(--gray-text);}
.instructors-section{padding:70px 24px;background:var(--gray-bg);}
.instructors-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.instructor-card{background:#fff;border-radius:10px;padding:20px;text-align:center;}
.instructor-photo{width:88px;height:88px;border-radius:50%;margin:0 auto 14px;overflow:hidden;}
.instructor-photo img{width:100%;height:100%;object-fit:cover;}
.instructor-name{font-weight:700;font-size:15px;margin-bottom:4px;}
.instructor-years{font-size:13px;color:var(--red);font-weight:600;margin-bottom:6px;}
.instructor-spec{font-size:13px;color:var(--gray-text);}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.pricing-card{border:1px solid var(--border);border-radius:10px;padding:26px;text-align:center;}
.pricing-name{font-weight:700;font-size:16px;margin-bottom:10px;}
.pricing-price{font-family:var(--font-head);font-size:30px;font-weight:800;color:var(--red);margin-bottom:6px;}
.pricing-unit{font-size:13px;color:var(--gray-text);}
.routes-section{padding:60px 24px;background:var(--dark);}
.routes-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;}
.routes-grid h2{color:#fff;font-size:28px;font-weight:800;margin:0 0 14px;}
.routes-grid p{color:var(--light-text);font-size:15px;line-height:1.6;}
.route-features{display:flex;flex-direction:column;gap:10px;}
.route-feature{color:#fff;font-size:14px;display:flex;gap:10px;}
.route-feature span{color:var(--red);}

/* Porady */
.tags-row{display:flex;gap:10px;margin-bottom:32px;flex-wrap:wrap;}
.tag-pill{border:1px solid var(--border);border-radius:20px;padding:8px 16px;font-size:13px;font-weight:600;color:var(--gray-text);}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.article-card{border:1px solid var(--border);border-radius:10px;padding:22px;cursor:pointer;color:var(--dark);}
.article-tag{font-size:12px;color:var(--red);font-weight:700;margin-bottom:8px;text-transform:uppercase;}
.article-title{font-weight:700;font-size:16px;margin-bottom:8px;line-height:1.3;}
.article-excerpt{font-size:14px;color:var(--gray-text);line-height:1.5;}
.article-full{font-size:14px;color:var(--dark);line-height:1.6;margin-top:14px;border-top:1px solid var(--border);padding-top:14px;display:none;}
.article-card.open .article-full{display:block;}
.article-cta{font-size:13px;color:var(--red);font-weight:700;margin-top:12px;}
.newsletter-row{display:flex;gap:10px;max-width:420px;margin:0 auto;flex-wrap:wrap;}
.newsletter-row input{flex:1;padding:12px 14px;border-radius:6px;border:none;font-size:14px;min-width:200px;}
.newsletter-row button{background:var(--dark);color:#fff;border:none;padding:12px 22px;border-radius:6px;font-weight:700;cursor:pointer;}

/* Sklep */
.filter-tabs{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:32px;}
.filter-tab{cursor:pointer;padding:10px 18px;border-radius:20px;font-size:14px;font-weight:600;background:var(--gray-bg);color:var(--dark);border:none;}
.filter-tab.active{background:var(--red);color:#fff;}
.perks-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center;}
.perk-title{font-weight:700;font-size:15px;margin-bottom:6px;}
.perk-desc{font-size:13px;color:var(--gray-text);}
.perks-section{padding:56px 24px;background:var(--gray-bg);text-align:center;}
.add-to-cart{background:var(--dark);color:#fff;border:none;padding:9px 16px;border-radius:6px;font-weight:700;font-size:13px;cursor:pointer;}

/* Cart drawer */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:60;display:none;}
.cart-overlay.show{display:block;}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:400px;max-width:92vw;background:#fff;z-index:61;box-shadow:-8px 0 24px rgba(0,0,0,0.15);display:none;flex-direction:column;}
.cart-drawer.show{display:flex;}
.cart-drawer-head{padding:20px 24px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;}
.cart-drawer-head .title{font-weight:800;font-size:18px;font-family:var(--font-head);}
.cart-close{cursor:pointer;font-size:20px;color:var(--gray-text);background:none;border:none;}
.cart-body{flex:1;overflow-y:auto;padding:16px 24px;}
.cart-empty{text-align:center;color:var(--gray-text);padding:40px 0;font-size:14px;}
.cart-item{display:flex;gap:12px;padding:14px 0;border-bottom:1px solid var(--border);}
.cart-item-thumb{width:56px;height:56px;flex-shrink:0;background:var(--gray-bg);border-radius:6px;}
.cart-item-name{font-weight:700;font-size:14px;margin-bottom:4px;}
.cart-item-price{color:var(--red);font-weight:700;font-size:14px;margin-bottom:6px;}
.cart-item-controls{display:flex;align-items:center;gap:10px;}
.qty-btn{width:22px;height:22px;border:1px solid var(--border);background:#fff;border-radius:4px;cursor:pointer;font-size:14px;}
.remove-item{margin-left:auto;font-size:12px;color:var(--gray-text);cursor:pointer;text-decoration:underline;background:none;border:none;}
.cart-foot{padding:20px 24px;border-top:1px solid var(--border);}
.cart-total-row{display:flex;justify-content:space-between;font-weight:700;font-size:16px;margin-bottom:16px;}
.cart-foot .btn{width:100%;}
.checkout-form{display:flex;flex-direction:column;gap:10px;}
.checkout-form input{padding:11px 12px;border:1px solid var(--border);border-radius:6px;font-size:14px;}
.checkout-total{display:flex;justify-content:space-between;font-weight:700;font-size:15px;margin-top:8px;}
.order-success{padding:40px 24px;text-align:center;}
.order-success .icon{font-size:40px;margin-bottom:16px;color:var(--green);}
.order-success .title{font-weight:700;font-size:17px;margin-bottom:8px;}
.order-success .desc{font-size:14px;color:var(--gray-text);}

/* Contact page */
.contact-grid{padding:60px 24px;max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;}
.contact-form{display:flex;flex-direction:column;gap:14px;}
.contact-form input,.contact-form textarea{padding:13px 14px;border:1px solid var(--border);border-radius:6px;font-size:14px;font-family:inherit;}
.contact-form textarea{resize:vertical;}
.consent-row{display:flex;gap:8px;align-items:flex-start;font-size:13px;color:var(--gray-text);}
.consent-row input{margin-top:2px;}
.form-success{border:1px solid var(--green);background:#f0fdf4;border-radius:10px;padding:26px;}
.form-success .title{font-weight:700;font-size:16px;margin-bottom:6px;color:var(--green);}
.locations{display:flex;flex-direction:column;gap:20px;margin-bottom:28px;}
.location-card{border:1px solid var(--border);border-radius:10px;padding:22px;}
.location-name{font-weight:700;font-size:16px;margin-bottom:8px;}
.location-info{font-size:14px;color:var(--gray-text);line-height:1.7;}
.contact-map{border-radius:10px;height:220px;overflow:hidden;}
.contact-map img{width:100%;height:100%;object-fit:cover;}
.registry-box{padding:32px 24px 60px;max-width:1120px;margin:0 auto;}
.registry-box .inner{border:1px solid var(--border);border-radius:10px;padding:24px;font-size:13px;color:var(--gray-text);line-height:1.7;}

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .why-section, .study-grid, .routes-grid, .contact-grid{grid-template-columns:1fr;}
  .dark-banner-inner{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .cat-grid{grid-template-columns:repeat(4,1fr);}
  .products-grid, .testimonials-grid, .tips-grid, .packages-grid, .topics-grid, .fleet-grid, .pricing-grid, .articles-grid, .perks-grid{grid-template-columns:repeat(2,1fr);}
  .instructors-grid{grid-template-columns:repeat(2,1fr);}
  .steps-grid{grid-template-columns:repeat(3,1fr);}
}
@media (max-width: 720px){
  .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--border);flex-direction:column;padding:16px 24px;gap:14px;z-index:40;}
  .main-nav.open{display:flex;}
  .nav-toggle{display:block;}
  .site-header{flex-wrap:wrap;}
  .hero h1{font-size:38px;}
  .section-title, .cat-strip h2, .section-head-row h2{font-size:26px;}
  .cat-grid{grid-template-columns:repeat(2,1fr);}
  .services-grid, .stats-grid, .products-grid, .testimonials-grid, .tips-grid, .packages-grid, .topics-grid, .fleet-grid, .pricing-grid, .articles-grid, .instructors-grid, .steps-grid, .perks-grid{grid-template-columns:1fr;}
  .cat-row{grid-template-columns:1fr;text-align:center;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .cart-drawer{width:100vw;}
}
