/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #2e1608;
  --accent:     #c49a6c;
  --accent-dk:  #a07244;
  --white:      #ffffff;
  --light:      #faf7f4;
  --gray:       #6b7280;
  --dark:       #1e120a;
  --border:     #e8e0d8;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --radius:     6px;
  --font:       'Lato', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 18px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SHARED DARK TEXTURE ===== */
.topbar {
  background-image:
    radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 26px 26px, 13px 13px;
  background-position: 0 0, 13px 13px;
}

/* testimonials texture via pseudo-element (not to override bg-image+url) */
.testimonials::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 26px 26px, 13px 13px;
  background-position: 0 0, 13px 13px;
}

/* ===== TOPBAR ===== */
.topbar {
  background-color: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 7px 0;
  letter-spacing: 0.02em;
}
.topbar .container { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 0; }
.topbar-left { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; }
.topbar-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-icon { font-size: 1rem; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { display: block; height: 56px; width: auto; }
.logo-icon-footer {
  filter: brightness(0) saturate(100%) invert(72%) sepia(30%) saturate(500%) hue-rotate(5deg) brightness(105%);
}
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-size: 1.18rem; font-weight: 800; color: var(--primary); letter-spacing: 0.04em; }
.logo-text span { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  color: var(--dark); border-radius: var(--radius);
  transition: color .2s, background .2s;
  text-transform: uppercase; letter-spacing: 0.05em;
}
nav a:hover, nav a.active { color: var(--primary); background: var(--light); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--accent-dk) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; transition: .3s; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative; overflow: hidden;
  height: 720px; background: var(--primary);
}
.hero-slides { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.slide-1 { background: url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; }
.slide-2 { background: url('https://images.unsplash.com/photo-1436450412740-6b988f486c6b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; }
.slide-3 { background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; }

.slide-overlay {
  position: absolute; inset: 0;
  background: rgba(20,10,5,0.62);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 0 60px; color: var(--white);
}
.slide-tag {
  display: inline-block; background: var(--accent);
  color: var(--primary); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.slide-content h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.slide-content p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 28px; max-width: 520px; }
.btn {
  display: inline-block; padding: 13px 30px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; transition: .2s; cursor: pointer; border: none;
}
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-controls {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: .3s;
}
.dot.active { background: var(--accent); transform: scale(1.3); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: none; border: none;
  color: rgba(255,255,255,0.80); font-size: 4.5rem; font-weight: 900;
  line-height: 1; cursor: pointer; padding: 8px 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.65);
  transition: color .2s, transform .25s;
}
.hero-arrow:hover { color: var(--accent); transform: translateY(-50%) scale(1.15); }
.hero-arrow.prev { left: 10px; }
.hero-arrow.next { right: 10px; }

/* ===== STATS BAR ===== */
.stats-bar { background-color: var(--primary); color: var(--white); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 12px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.82rem; opacity: 0.75; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: rgba(196,154,108,0.14);
  color: var(--accent-dk); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.3rem; font-weight: 900; color: var(--primary); margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.divider {
  width: 52px; height: 3px; background: var(--accent);
  border-radius: 2px; margin: 14px auto 0;
}

/* ===== SERVICES ===== */
.services { background: var(--light); }
.services-banner {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 220px; margin-bottom: 52px;
}
.services-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,12,4,0.92) 0%, rgba(30,12,4,0.48) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 52px;
}
.services-banner-overlay p {
  color: var(--white); font-size: 1.55rem; font-weight: 900;
  max-width: 480px; line-height: 1.3;
}
.services-banner-overlay span { color: var(--accent); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 10px;
  padding: 34px 28px; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); border-top-color: var(--accent); }
.service-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #6b3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.service-card .more-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-dk); font-size: 0.82rem; font-weight: 700;
  margin-top: 16px; transition: gap .2s;
}
.service-card:hover .more-link { gap: 10px; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
}
.about-photo {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: 12px; display: block;
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--accent); color: var(--primary);
  padding: 22px 28px; border-radius: 10px;
  text-align: center; font-weight: 900;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.about-badge .years { font-size: 2.8rem; line-height: 1; }
.about-badge .years-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-content .section-tag { margin-bottom: 10px; }
.about-content h2 { font-size: 1.9rem; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.about-content .divider { margin: 14px 0; }
.about-content p { color: var(--gray); margin-bottom: 16px; font-size: 0.96rem; }
.about-list { margin: 20px 0 28px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--dark);
}
.about-list li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 900; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ===== WHY US ===== */
.why { background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  background: var(--white); border-radius: 10px;
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.why-icon { font-size: 2.6rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray); }

/* ===== OFFER (rozbudowane karty oferty) ===== */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.offer-card {
  background: var(--white); border-radius: 10px;
  padding: 34px 30px; box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform .25s, box-shadow .25s, border-top-color .25s;
  display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); border-top-color: var(--accent); }
.offer-card h3 { font-size: 1.12rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.offer-card > p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.offer-list { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.offer-list li {
  position: relative; padding: 7px 0 7px 22px;
  font-size: 0.86rem; color: var(--dark); line-height: 1.6;
}
.offer-list li::before {
  content: '▸'; position: absolute; left: 0; top: 6px;
  color: var(--accent); font-weight: 900;
}
.offer-invite {
  text-align: center; margin-top: 44px;
  font-size: 1.15rem; font-weight: 800; color: var(--primary);
  letter-spacing: 0.02em;
}
.about-invite { font-weight: 800; color: var(--primary); margin-bottom: 22px !important; }

/* ===== ENGLISH ===== */
.english {
  position: relative;
  background:
    linear-gradient(rgba(25,12,5,0.93), rgba(25,12,5,0.93)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  color: var(--white);
}
.english .section-header h2 { color: var(--white); }
.english .section-header p { color: rgba(255,255,255,0.72); max-width: 700px; }
.english .section-tag { background: rgba(196,154,108,0.22); color: var(--accent); }
.english-card {
  max-width: 780px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 38px 40px; text-align: center;
}
.english-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: 18px; letter-spacing: 0.04em; }
.english-list { text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; margin-bottom: 30px; }
.english-list li {
  position: relative; padding: 8px 0 8px 24px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.6;
}
.english-list li::before {
  content: '✓'; position: absolute; left: 0; top: 7px;
  color: var(--accent); font-weight: 900;
}

/* ===== AKTUALNOŚCI ===== */
.news { background: var(--white); }
.news-empty {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--light); border: 1px dashed var(--border);
  border-radius: 12px; padding: 48px 36px;
}
.news-empty-icon { font-size: 2.6rem; margin-bottom: 14px; }
.news-empty p { color: var(--gray); font-size: 0.96rem; margin-bottom: 24px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  background:
    linear-gradient(rgba(25,12,5,0.92), rgba(25,12,5,0.92)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  color: var(--white);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.65); }
.testimonials .section-tag { background: rgba(196,154,108,0.22); color: var(--accent); }
.testimonials .divider { background: var(--accent); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; opacity: 0.88; line-height: 1.7; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
}
.testi-name strong { display: block; font-size: 0.88rem; }
.testi-name span { font-size: 0.78rem; opacity: 0.6; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.contact-info .divider { margin: 14px 0 24px; }
.contact-info p { color: var(--gray); font-size: 0.92rem; margin-bottom: 28px; }

.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #6b3a20);
  color: white; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-text strong { display: block; font-size: 0.8rem; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.info-text span { font-size: 0.96rem; color: var(--dark); font-weight: 500; }

.contact-form {
  background: var(--light); border-radius: 12px; padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-size: 0.92rem; color: var(--dark);
  font-family: var(--font); transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group.full { grid-column: 1/-1; }
.rodo { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 16px; }
.rodo input { width: auto; margin-right: 8px; }
.btn-submit {
  width: 100%; background: var(--primary); color: var(--white);
  padding: 14px; font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius); border: none; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #1a0a03; transform: translateY(-1px); }

/* ===== MAP STRIP ===== */
.map-strip { background: var(--light); padding: 0; }
.map-strip iframe { width: 100%; height: 340px; border: none; display: block; filter: saturate(0.7); }

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  background-image:
    radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(15,6,2,0.88), rgba(15,6,2,0.88)),
    url('https://images.unsplash.com/photo-1479142506502-19b3a3b7ff33?auto=format&fit=crop&w=1920&q=80');
  background-size: 26px 26px, 13px 13px, auto, cover;
  background-position: 0 0, 13px 13px, 0 0, center top;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand .logo-mark { background: var(--accent); color: var(--primary); margin-bottom: 16px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 290px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--accent); }
.footer-nip { display: flex; gap: 20px; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  background: none; border: none;
  color: var(--accent); font-size: 3.2rem; font-weight: 900; line-height: 1;
  cursor: pointer;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, color .2s;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { color: var(--white); transform: translateY(-5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  .services-banner { height: 160px; }
  .services-banner-overlay { padding: 0 24px; }
  .services-banner-overlay p { font-size: 1.1rem; }
  .topbar { display: none; }
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 24px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--border); }
  header { position: relative; }
  .header-inner { position: relative; }
  .burger { display: flex; }
  .hero { height: auto; min-height: 560px; }
  .slide-content { padding: 48px 24px; }
  .slide-content h1 { font-size: 2rem; }
  .hero-arrow { display: none; }
  .services-grid, .why-grid, .testi-grid, .offer-grid { grid-template-columns: 1fr; }
  .english-list { grid-template-columns: 1fr; }
  .english-card { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
