@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@500;600;700;800&display=swap');

:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --surface-muted: #f3f6fb;
  --text: #102a43;
  --text-muted: #52606d;
  --accent: #1f8bd9;
  --accent-dark: #1164b4;
  --success: #0f766e;
  --border: #d9e2ec;
  --shadow: 0 24px 60px rgba(16, 42, 67, 0.08);
  --site-icon: '🏭';
  --emoji-font: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: 'Inter', sans-serif; background: radial-gradient(circle at top left, rgba(31, 139, 217, 0.12), transparent 22%), radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.14), transparent 18%), var(--bg); color: var(--text); }
body { min-height: 100vh; background: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.site-icon { width: 1.45rem; height: 1.45rem; display: inline-grid; place-items: center; font-family: var(--emoji-font); line-height: 1; background-size: contain; background-repeat: no-repeat; background-position: center; }
.site-icon::before { content: var(--site-icon); display: block; width: 100%; height: 100%; }
.site-icon.site-icon-image::before { content: ''; }

.container { width: min(1180px, 100%); margin: 0 auto; padding: 0 24px; }

nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(16, 42, 67, 0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-icon { width: 44px; height: 44px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: grid; place-items: center; box-shadow: 0 14px 32px rgba(31, 139, 217, 0.2); }
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-img { width: 44px; height: 44px; border-radius: 16px; object-fit: contain; background: #fff; padding: 6px; box-shadow: 0 14px 32px rgba(31, 139, 217, 0.12); }
.logo-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
.logo-sub { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--accent-dark); }
.nav-actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.btn, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; padding: 0.9rem 1.5rem; font-weight: 700; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; border: none; cursor: pointer; }
.btn { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 18px 40px rgba(31, 139, 217, 0.22); }
.btn:hover { transform: translateY(-2px); }
.btn-secondary { background: rgba(15, 118, 110, 0.08); color: var(--accent-dark); border: 1px solid rgba(15, 118, 110, 0.16); }
.btn-secondary:hover { background: rgba(15, 118, 110, 0.14); }

.page-wrapper { position: relative; overflow-x: hidden; padding-bottom: 3rem; }
.page-wrapper::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(31, 139, 217, 0.16), transparent 18%), radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.12), transparent 20%); pointer-events: none; z-index: 0; }

.banner { min-height: 88vh; position: relative; padding: 6.2rem 0 4rem; display: flex; align-items: center; }
.banner-bg { position: absolute; inset: 0; background: url('images/banner.svg') center/cover no-repeat; background-size: cover; filter: contrast(0.95) brightness(0.55); }
.banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(7, 22, 44, 0.34); }
.banner-grid { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.banner-left { max-width: 620px; display: flex; flex-direction: column; gap: 1.6rem; }
.badge { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1.15rem; border-radius: 999px; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.2); color: #eff8ff; font-size: 0.85rem; font-weight: 700; }
.badge span { width: 1.85rem; height: 1.85rem; border-radius: 50%; background: rgba(255, 255, 255, 0.14); display: grid; place-items: center; color: #eff8ff; }
.banner-title { font-family: 'Syne', sans-serif; font-size: clamp(3rem, 5vw, 4.8rem); line-height: 0.98; letter-spacing: -0.04em; color: #fff; }
.banner-text { max-width: 560px; font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.9); }
.banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; }
.hero-picker { display: grid; gap: 1rem; margin-top: 1.8rem; }
.hero-picker label { color: rgba(255,255,255,0.8); font-size: 0.92rem; font-weight: 600; }
.hero-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-option { width: 76px; height: 76px; border-radius: 18px; border: 2px solid transparent; overflow: hidden; cursor: pointer; background: rgba(255,255,255,0.08); transition: transform 0.2s ease, border-color 0.2s ease; }
.hero-option:hover { transform: translateY(-2px); }
.hero-option.selected { border-color: rgba(255,255,255,0.92); box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.18); }
.hero-option img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-option span { display: block; padding: 0.45rem 0.5rem; text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.88); background: rgba(0,0,0,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.6rem; }
.stat-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: 22px; padding: 1.3rem 1.35rem; box-shadow: 0 20px 45px rgba(15, 39, 67, 0.08); color: #fff; }
.stat-card strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.75rem; color: #fff; margin-bottom: 0.35rem; }
.stat-card span { font-size: 0.78rem; color: rgba(255,255,255,0.82); letter-spacing: 0.12em; text-transform: uppercase; }
.banner-right { display: flex; justify-content: center; }
.why-card { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 30px; padding: 2rem; box-shadow: 0 28px 70px rgba(8, 19, 37, 0.16); backdrop-filter: blur(14px); color: #fff; }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 2rem; margin-bottom: 1.2rem; }
.why-card ul { list-style: none; display: grid; gap: 1.2rem; }
.why-card li { display: grid; gap: 0.35rem; }
.why-card strong { font-size: 1rem; color: #f8fcff; }
.why-card span { color: rgba(255,255,255,0.75); line-height: 1.7; }
.banner-image { display: none; }
.banner-image::after { display: none; }
.banner-box { display: none; }
.banner-box h3, .banner-box p { display: none; }

.page-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.hero-text { max-width: 620px; }
.hero-image { min-height: 420px; border-radius: 32px; background-position: center; background-size: cover; background-repeat: no-repeat; box-shadow: var(--shadow); position: relative; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 118, 110, 0.18), rgba(255, 255, 255, 0.1)); border-radius: 32px; }

.section { padding: 6rem 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 2.2rem; }
.section-title .label { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); font-size: 0.85rem; font-weight: 700; }
.section-title h2 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 3.3vw, 3.2rem); line-height: 1.05; color: #102a43; margin-bottom: 0.85rem; }
.section-title p { color: #64748b; line-height: 1.9; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.client-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.client-card {
  position: relative;
  min-height: 340px;
  border-radius: 30px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 32px 80px rgba(8, 22, 44, 0.18);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.client-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 33, 61, 0.25), rgba(7, 16, 35, 0.68));
}
.client-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.client-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 1.3rem;
}
.client-card h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
}
.client-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}
.client-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.client-tags span {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  color: #fff;
}
.client-card .btn-secondary {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}
.client-card .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}
.service-card, .package-card, .contact-panel, .about-card, .account-card, .summary-card, .step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 2rem; box-shadow: var(--shadow); position: relative; z-index: 1; }
.service-card { overflow: hidden; }
.service-card img { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; margin-bottom: 1.25rem; }
.service-card .meta { margin-bottom: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--accent); }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; margin-bottom: 0.75rem; color: #102a43; }
.service-card p { color: #64748b; line-height: 1.75; }
.package-card .package-header { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.package-card .package-hint { color: #64748b; font-size: 0.86rem; }
.package-card h3 { font-family: 'Syne', sans-serif; font-size: 1.45rem; margin-bottom: 0.4rem; color: #102a43; }
.package-card .price { font-family: 'Syne', sans-serif; font-size: 2rem; color: #102a43; }
.package-card .price span { font-size: 0.9rem; color: #64748b; margin-left: 0.35rem; }
.package-card ul { list-style: none; display: grid; gap: 0.85rem; margin: 1.5rem 0 1.7rem; color: #64748b; }
.package-card li { display: flex; align-items: flex-start; gap: 0.85rem; line-height: 1.7; }
.package-card li::before {
  content: '';
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.package-card .package-btn, .package-card a.btn { width: 100%; padding: 1rem; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border: none; cursor: pointer; transition: transform 0.2s ease; display: inline-flex; justify-content: center; }
.package-card .package-btn:hover, .package-card a.btn:hover { transform: translateY(-2px); }

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
.about-card { min-height: 420px; background: linear-gradient(180deg, rgba(9, 30, 66, 0.2), rgba(8, 20, 37, 0.38)), url('images/about.svg') center/cover no-repeat; }
.about-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03)); }
.about-card-inner { position: relative; z-index: 1; padding: 2.8rem; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.about-card h3 { font-size: 3.2rem; margin-bottom: 0.5rem; }
.about-card p { max-width: 420px; line-height: 1.9; color: rgba(255,255,255,0.88); }
.about-list { display: grid; gap: 1rem; }
.about-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: 20px; background: var(--surface-soft); }
.about-item-icon { width: 44px; height: 44px; border-radius: 15px; background: rgba(31, 139, 217, 0.12); display: grid; place-items: center; font-size: 1.1rem; color: var(--accent-dark); }
.about-item h4 { font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 0.35rem; color: #102a43; }
.about-item p { color: #64748b; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: start; }
.contact-panel { padding: 2.4rem; }
.contact-panel h3 { font-family: 'Syne', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; color: #102a43; }
.contact-panel p { color: #64748b; line-height: 1.8; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; padding: 1rem; border-radius: 18px; border: 1px solid var(--border); background: var(--surface-soft); }
.contact-item-icon { width: 42px; height: 42px; border-radius: 14px; background: rgba(31, 139, 217, 0.12); display: grid; place-items: center; font-size: 1.05rem; color: var(--accent); }
.contact-item-text { display: grid; gap: 0.2rem; }
.contact-item-text small { color: #94a3b8; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; }
.contact-item-text strong { font-size: 0.95rem; color: #102a43; }

.page-title { padding: 7.5rem 0 2rem; }
.page-title h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1.05; color: #102a43; margin-bottom: 0.8rem; }
.page-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 30px; padding: 2.2rem; box-shadow: var(--shadow); }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.account-card { padding: 2rem; }
.account-card h2 { font-family: 'Syne', sans-serif; font-size: 1.4rem; margin-bottom: 1rem; color: #102a43; }
.account-card p { color: #64748b; line-height: 1.75; }
.account-status { margin: 1.3rem 0 1rem; padding: 1rem; border-radius: 20px; background: rgba(15, 118, 110, 0.08); color: #0f766e; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { display: flex; flex-direction: column; gap: 0.55rem; }
.field-group label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #64748b; }
.field-group input, .field-group select, .field-group textarea { border-radius: 16px; padding: 1rem 1.1rem; border: 1px solid var(--border); background: #fff; color: #102a43; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(31, 139, 217, 0.08); }
.field-group textarea { min-height: 160px; resize: vertical; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.85rem; grid-column: 1/-1; }
.checkbox-group label { display: inline-flex; align-items: center; gap: 0.75rem; color: #344e72; line-height: 1.6; }
.field-note { color: #64748b; font-size: 0.92rem; line-height: 1.6; }
.submit-btn, .checkout-form button, .form-grid .btn { margin-top: 1rem; width: 100%; padding: 1rem; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border: none; cursor: pointer; transition: transform 0.2s ease; }
.submit-btn:hover, .checkout-form button:hover { transform: translateY(-2px); }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.step-card { display: grid; gap: 0.9rem; padding: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: 24px; text-align: center; }
.step-card h3 { font-size: 1.2rem; color: #102a43; }
.step-card p { color: #64748b; line-height: 1.75; }

.cart-page { padding: 8.5rem 0 4rem; }
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0 1rem; }
.cart-table th, .cart-table td { padding: 1rem 1.1rem; text-align: left; }
.cart-table th { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: #64748b; letter-spacing: 0.12em; }
.cart-table td { background: var(--surface-soft); border: 1px solid var(--border); border-radius: 18px; }
.cart-table button { padding: 0.7rem 1rem; border-radius: 14px; border: 1px solid rgba(16, 42, 67, 0.08); background: #fff; cursor: pointer; }
.cart-summary { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.summary-card { min-width: 320px; padding: 1.5rem; }
.total-row { display: flex; justify-content: space-between; gap: 0.5rem; font-weight: 700; margin: 1rem 0; color: #102a43; }
.checkout-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.bookings-section { margin-top: 2rem; padding: 1.5rem; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 22px; }
.booking-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem; border-radius: 18px; background: #fff; border: 1px solid rgba(100, 116, 139, 0.08); }
.booking-item strong { color: #102a43; }
.booking-item span { color: #64748b; }
.booking-item small { color: #94a3b8; }
.booking-status { display: grid; gap: 0.35rem; text-align: right; }
.booking-card { border-radius: 24px; border: 1px solid var(--border); background: #fff; padding: 1.5rem; margin-bottom: 1rem; }
.booking-card-header { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: 0.9rem; }
.booking-card-header strong { font-size: 1rem; color: #102a43; }
.booking-card-header span { color: var(--accent-dark); font-weight: 700; }
.booking-card-body p { margin: 0.65rem 0; color: #52606d; line-height: 1.7; }
.booking-card-body strong { color: #102a43; }

.footer { padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: #64748b; font-size: 0.92rem; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tag-pill { padding: 0.55rem 0.95rem; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--border); color: #64748b; font-size: 0.78rem; }

@media (max-width: 1080px) {
  .banner { display: block; }
  .banner-grid { display: block; }
  .card-grid, .client-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .account-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-inner { flex-wrap: wrap; justify-content: center; }
  .nav-links { display: none; }
  .banner { padding-top: 7rem; }
  .banner-image { min-height: 420px; }
  .card-grid, .steps-grid, .client-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .field-group, .form-grid { grid-template-columns: 1fr; }
}
