/* fair-gate-414.css — コネクトプロ・アカデミー */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto:wght@100;300;400;500;700;900&family=Pathway+Gothic+One&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1b1a1a;
  --white: #ffffff;
  --gray: #6b6b6b;
  --heading: #2b2b2b;
  --light-bg: #fafafa;
  --accent: #0277bc;
  --shadow-card: 0 2px 18px rgba(0,0,0,0.3);
  --shadow-header: 0 1px 6px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.7em; font-weight: 500; color: var(--gray); background: var(--white); overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--heading); font-weight: 700; line-height: 1.15em; }
h1 { font-size: 60px; }
h2 { font-size: 51px; }
h3 { font-size: 43px; }
h4 { font-size: 28px; }
h5 { font-size: 22px; }
h6 { font-size: 18px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 80%; max-width: 1080px; margin: 0 auto; }

/* ========== NOTIFICATION BAR ========== */
.notif-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  background: linear-gradient(90deg, #1b1a1a, #000);
  color: #fff; text-align: center;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 40px;
}
.notif-bar a { color: #fff; text-decoration: underline; }
.notif-bar .notif-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; line-height: 1; }
.notif-bar.hidden { display: none; }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 32px; left: 0; width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-header);
  transition: top 0.3s ease;
}
.site-header.no-notif { top: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; }

/* Logo */
.site-logo svg { height: 44px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); padding: 0 18px; display: block; line-height: 70px;
  transition: color 0.2s;
}
.main-nav > li > a:hover { color: var(--accent); }
.main-nav > li > a.active { border-bottom: 2px solid var(--ink); }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--light-bg); border-top: 3px solid var(--ink); box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 20px 0; z-index: 100; }
.main-nav > li:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 6px 20px; font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--gray); transition: color 0.2s; }
.dropdown li a:hover { color: var(--ink); }

/* Utility */
.header-utility { display: flex; align-items: center; gap: 20px; }
.header-utility a { font-family: 'Pathway Gothic One', sans-serif; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.header-utility a:hover { color: var(--accent); }

/* Mobile hamburger */
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — скрыт по умолчанию на всех размерах */
.mobile-menu { display: none; }

/* ========== HERO SLIDER ========== */
.hero-slider { position: relative; height: 88vh; overflow: hidden; margin-top: 102px; }
.hero-slider.no-notif { margin-top: 70px; }

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 55%);
}

.hero-content { position: absolute; top: 50%; left: 7%; transform: translateY(-50%); max-width: 560px; }
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 72px; color: var(--ink); line-height: 1.05em;
  text-shadow: 0 0 10px rgba(255,255,255,0.95), 0 0 20px rgba(255,255,255,0.9), 0 0 35px rgba(255,255,255,0.99);
}
.hero-content p { font-size: 16px; color: var(--heading); margin: 16px 0 28px; max-width: 400px; font-weight: 400; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.25); cursor: pointer; transition: background 0.3s; border: none; }
.hero-dot.active { background: var(--ink); }

/* ========== SCROLL CUE ========== */
.scroll-cue { text-align: center; padding: 40px 0 20px; }
.scroll-cue p { font-family: 'Pathway Gothic One', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.scroll-cue-line { width: 1px; height: 50px; background: var(--gray); margin: 0 auto 10px; }
.scroll-cue i { font-size: 20px; color: var(--gray); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid var(--heading); color: var(--heading);
  background: transparent; border-radius: 0;
  padding: 0.3em 1.4em; cursor: pointer;
  transition: background 0.25s, color 0.25s, padding-right 0.2s;
  position: relative;
}
.btn .btn-arrow { opacity: 0; margin-left: -1em; display: inline-block; transition: opacity 0.2s, margin-left 0.2s; }
.btn:hover { background: var(--heading); color: var(--white); }
.btn:hover .btn-arrow { opacity: 1; margin-left: 0.4em; }

.btn-white { border-color: var(--white); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--ink); }

.btn-filled { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-filled:hover { background: var(--heading); border-color: var(--heading); }

/* ========== SECTION DIVIDER ========== */
.section-divider { width: 17%; height: 2px; background: var(--ink); margin: 16px 0 28px; }
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ========== CAROUSEL ========== */
.carousel-section { padding: 70px 0 80px; background: var(--white); }
.carousel-header { text-align: center; margin-bottom: 50px; }
.carousel-header h2 { font-size: 38px; }
.carousel-header p { max-width: 600px; margin: 12px auto 0; }

.carousel-track-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.45s ease; }
.carousel-card {
  flex: 0 0 calc(33.333% - 16px); min-width: 0;
  background: var(--white); box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease; overflow: hidden;
}
.carousel-card:hover { box-shadow: 0 2px 28px rgba(0,0,0,0.18); }
.carousel-card img { width: 100%; height: 220px; object-fit: cover; }
.carousel-card-body { padding: 24px; }
.carousel-card-body h4 { font-size: 20px; margin-bottom: 10px; }
.carousel-card-body p { font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.carousel-card-price { font-family: 'Pathway Gothic One', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--ink); }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.carousel-btn { background: none; border: 2px solid var(--ink); width: 44px; height: 44px; cursor: pointer; font-size: 18px; color: var(--ink); transition: background 0.2s, color 0.2s; }
.carousel-btn:hover { background: var(--ink); color: var(--white); }

/* ========== FEATURE BAND ========== */
.feature-band { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.feature-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feature-band-overlay { position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%); }
.feature-band-content { position: relative; z-index: 2; margin-left: auto; max-width: 440px; padding: 60px 5% 60px 0; color: var(--white); text-align: right; }
.feature-band-content h2 { color: var(--white); font-size: 44px; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.feature-band-content p { color: rgba(255,255,255,0.88); margin: 16px 0 28px; font-size: 15px; }

/* ========== STATS ROW ========== */
.stats-row { padding: 70px 0; background: var(--white); }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; }
.stat-bordered { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 20px 0; width: 70%; margin: 0 auto; }
.stat-bordered .stat-number { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--ink); line-height: 1; }
.stat-bordered .stat-label { font-family: 'Pathway Gothic One', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
.stat-circle-wrap { display: flex; justify-content: center; }
.stat-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 0;
}
.stat-circle .stat-number { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 700; line-height: 1; }
.stat-circle .stat-label { font-family: 'Pathway Gothic One', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ========== ABOUT INTRO (double border) ========== */
.intro-section { padding: 90px 0; background: var(--white); }
.intro-inner { display: flex; align-items: flex-start; gap: 60px; }
.intro-left { flex: 0 0 40%; }
.intro-left h2 { font-size: 44px; line-height: 1.1em; }
.intro-right { flex: 1; }
.intro-box {
  border: 4px double rgba(0,0,0,0.75); padding: 4%;
}
.intro-box p { margin-bottom: 16px; font-size: 14px; }
.intro-box p:last-child { margin-bottom: 0; }

/* ========== PRICING SECTION ========== */
.pricing-section { padding: 90px 0; background: var(--light-bg); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { font-size: 44px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border: 1px solid #e5e5e5;
  padding: 36px 28px; text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.pricing-card.featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pricing-card.featured h4, .pricing-card.featured .price-amount, .pricing-card.featured .price-label, .pricing-card.featured li { color: var(--white); }
.pricing-card.featured .price-tag { color: rgba(255,255,255,0.7); }
.pricing-card .plan-name { font-family: 'Pathway Gothic One', sans-serif; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.7); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--ink); line-height: 1; }
.price-tag { font-family: 'Pathway Gothic One', sans-serif; font-size: 16px; letter-spacing: 1px; color: var(--gray); margin: 4px 0 24px; }
.pricing-card ul { text-align: left; margin-bottom: 32px; }
.pricing-card ul li { font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.07); color: var(--gray); }
.pricing-card.featured ul li { border-bottom-color: rgba(255,255,255,0.15); }
.pricing-card ul li i { margin-right: 8px; color: var(--ink); }
.pricing-card.featured ul li i { color: var(--white); }

/* ========== CTA BANNER ========== */
.cta-section { padding: 80px 0; background: var(--ink); color: var(--white); text-align: center; }
.cta-section h2 { color: var(--white); font-size: 44px; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 15px; }

/* ========== PROMO SECTION (magazine-style) ========== */
.promo-section { padding: 90px 0; background: var(--white); overflow: hidden; }
.promo-inner { display: flex; align-items: center; gap: 60px; }
.promo-left { flex: 1; }
.promo-left h2 { font-size: 40px; margin-bottom: 20px; }
.promo-left p { margin-bottom: 28px; }
.promo-right { flex: 0 0 42%; position: relative; }
.promo-right img { transform: rotate(3deg); box-shadow: var(--shadow-card); position: relative; right: -30px; }

/* ========== FOOTER ========== */
.site-footer { background: var(--ink); color: var(--white); padding: 70px 0 0; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-col h5 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 150%; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px; font-weight: 400;
}
.footer-col p, .footer-col address { font-size: 13px; color: rgba(255,255,255,0.65); font-style: normal; line-height: 1.8em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.25s; position: relative; display: inline-block; }
.footer-col ul li a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: var(--white); transition: width 0.25s ease-out; transform-origin: left; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::after { width: 100%; }
.footer-logo svg { height: 40px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--white); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: var(--white); border: 1px solid #e5e5e5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  max-width: 360px; padding: 24px; border-radius: 2px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h6 { font-size: 16px; margin-bottom: 10px; }
.cookie-banner p { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.cookie-toggles { margin-bottom: 16px; }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 12px; color: var(--heading); }
.cookie-toggle input[type="checkbox"] { width: 36px; height: 20px; cursor: pointer; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .cookie-actions button { flex: 1; font-family: 'Pathway Gothic One', sans-serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: 2px solid var(--ink); background: transparent; color: var(--ink); padding: 6px 12px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.cookie-banner .cookie-actions button.accept-all { background: var(--ink); color: var(--white); }
.cookie-banner .cookie-actions button:hover { background: var(--ink); color: var(--white); }

/* ========== SCROLL TO TOP ========== */
.scroll-top { position: fixed; bottom: 30px; left: 20px; z-index: 999; background: rgba(0,0,0,0.4); color: #fff; border: none; width: 40px; height: 40px; border-radius: 5px 0 0 5px; cursor: pointer; font-size: 16px; display: none; align-items: center; justify-content: center; transition: background 0.2s; }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: rgba(0,0,0,0.7); }

/* ========== INNER PAGE HERO ========== */
.page-hero { height: 320px; background: var(--ink); display: flex; align-items: center; margin-top: 102px; position: relative; overflow: hidden; }
.page-hero.no-notif { margin-top: 70px; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: var(--white); font-size: 52px; }
.page-hero-content p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 16px; }

/* ========== TEXT CONTENT SECTION ========== */
.text-section { padding: 80px 0; }
.text-section h2 { font-size: 36px; margin-bottom: 20px; }
.text-section h3 { font-size: 26px; margin: 32px 0 14px; }
.text-section p { margin-bottom: 16px; }
.text-section ul { margin: 0 0 20px 24px; list-style: disc; }
.text-section ul li { margin-bottom: 8px; }

/* ========== CONTACT FORM ========== */
.contact-section { padding: 90px 0; background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 40px; margin-bottom: 20px; }
.contact-info address { font-style: normal; font-size: 14px; color: var(--gray); line-height: 2em; }
.contact-info address i { width: 20px; margin-right: 8px; color: var(--ink); }
.contact-form { background: var(--white); padding: 40px; box-shadow: var(--shadow-card); }
.contact-form h3 { font-size: 28px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Pathway Gothic One', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--heading); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid #ddd; border-radius: 0;
  padding: 12px 14px; font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--heading);
  transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--ink); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.form-privacy a { color: var(--ink); text-decoration: underline; }

/* ========== FAQ ========== */
.faq-section { padding: 80px 0; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--heading); }
.faq-question i { transition: transform 0.3s; color: var(--gray); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 14px; color: var(--gray); }

/* ========== SERVICE CARDS ========== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.service-card { background: var(--white); border: 1px solid #e5e5e5; padding: 36px 28px; transition: box-shadow 0.3s, transform 0.3s; }
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.service-card i { font-size: 36px; color: var(--ink); margin-bottom: 18px; }
.service-card h4 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 13px; color: var(--gray); }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 14px 0; background: var(--light-bg); border-bottom: 1px solid #e5e5e5; }
.breadcrumb ul { display: flex; gap: 8px; align-items: center; }
.breadcrumb li { font-size: 12px; color: var(--gray); }
.breadcrumb li a { color: var(--gray); }
.breadcrumb li a:hover { color: var(--ink); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  h1 { font-size: 42px; } h2 { font-size: 36px; } h3 { font-size: 30px; }
  .hero-content h2 { font-size: 56px; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--white); z-index: 9990; overflow-y: auto; padding: 80px 24px 40px; }
  .mobile-menu.open { display: block; }
  .mobile-menu li a { display: block; font-family: 'Pathway Gothic One', sans-serif; font-size: 1.2rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); padding: 14px 0; border-bottom: 1px solid #e5e5e5; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-inner { flex-direction: column; gap: 30px; }
  .promo-inner { flex-direction: column; }
  .promo-right img { transform: none; right: 0; }
  .site-header { top: 0; }
  .hero-slider { margin-top: 70px; }
}

@media (max-width: 767px) {
  h1 { font-size: 32px; } h2 { font-size: 28px; }
  .hero-content h2 { font-size: 37px; }
  .hero-slider { height: 70vh; }
  .footer-cols { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .carousel-card { flex: 0 0 85%; }
  .form-row { grid-template-columns: 1fr; }
  .container { width: 90%; }
  .notif-bar { font-size: 11px; }
}
