:root {
  --blue: #0b63d5;
  --blue-700: #0a58c8;
  --blue-50: #eef5ff;
  --text: #1b1f23;
  --muted: #6b7280;
  --bg: #ffffff;
  --soft: #f4f6f8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; color: var(--text); background: var(--bg); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }

.site-header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; gap: 16px; position: relative; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo { width: 36px; height: 36px; object-fit: contain; }
.brand-name { font-weight: 700; font-size: 18px; }
.header-nav { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--text); text-decoration: none; }
.header-email { color: var(--text); text-decoration: none; }

/* Burger menu (hidden by default) */
.burger-menu { 
  display: none; 
  flex-direction: column; 
  gap: 4px; 
  background: transparent; 
  border: none; 
  cursor: pointer; 
  padding: 8px; 
  z-index: 30;
}
.burger-menu span { 
  display: block; 
  width: 24px; 
  height: 3px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn { display: inline-block; border: 0; cursor: pointer; text-decoration: none; border-radius: 10px; padding: 12px 18px; font-weight: 600; transition: all .2s ease; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(11,99,213,.25); }
.btn-ghost { background: transparent; color: var(--blue); border: 1px solid rgba(11,99,213,.25); }
.btn-ghost:hover { background: var(--blue-50); }
.btn-block { width: 100%; text-align: center; }

.hero { background: radial-gradient(1200px 500px at 70% -50%, #cfe2ff 0%, #ffffff 60%), linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%); padding: 56px 0; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.badge { display: inline-block; background: var(--blue-50); color: var(--blue); font-weight: 700; padding: 6px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .2px; }
.hero-text h1 { margin: 8px 0 12px; font-size: 38px; line-height: 1.15; }
.subtitle { color: var(--muted); margin: 0 0 16px; font-size: 18px; }
.bullets { margin: 0; padding-left: 18px; }
.bullets li { margin: 8px 0; }
.hero-cta { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-visual { min-height: 320px; border-radius: 16px; background: linear-gradient(135deg, rgba(11,99,213,.12), rgba(11,99,213,.45)); box-shadow: 0 16px 40px rgba(11,99,213,.15); border: 1px solid rgba(11,99,213,.25); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual video { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; position: absolute; top: 0; left: 0; }
.hero-visual:empty::before { content: ''; display: block; width: 100%; height: 320px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%23fff"/><stop offset="100%" stop-color="%23e8f1ff"/></linearGradient></defs><rect width="600" height="400" fill="url(%23g)"/><circle cx="100" cy="80" r="40" fill="%23e1ebff"/><circle cx="240" cy="140" r="28" fill="%23d8e6ff"/><circle cx="420" cy="60" r="22" fill="%23e1ebff"/></svg>') center/cover no-repeat; }

.form-card { position: relative; background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%); border: 2px solid #e5e7eb; border-radius: 16px; padding: 20px; box-shadow: 0 12px 32px rgba(11,99,213,.08); }
.form-card-lg { padding: 36px; border-radius: 18px; border: 2px solid rgba(11,99,213,.15); background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%); box-shadow: 0 16px 48px rgba(11,99,213,.12); }
.form-card h2 { margin: 0 0 8px; font-size: 28px; font-weight: 700; color: #0a1435; }
.form-subtitle { margin: 0 0 24px; color: var(--muted); font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 600; color: #374151; }
.required { color: #dc2626; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea { width: 100%; border: 2px solid #d1d5db; border-radius: 10px; padding: 12px 14px; font-size: 14px; transition: all .2s ease; background: #fff; }
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,99,213,.1); }
textarea { min-height: 100px; resize: vertical; }
.form-errors, .errorlist { color: #dc2626; font-size: 13px; margin: 4px 0 0; list-style: none; padding: 0; }
.errorlist li { margin: 4px 0; padding: 6px 10px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; }
.form-note { color: var(--muted); font-size: 12px; margin-top: 12px; }
.form-note a { color: var(--blue); text-decoration: underline; }
.btn-large { padding: 14px 24px; font-size: 16px; }
.form-success-message { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); border: 2px solid #10b981; border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; color: #065f46; font-size: 15px; text-align: center; }

.section-title { font-size: 28px; margin: 0 0 24px; text-align: center; font-weight: 700; color: #0a1435; }
.features { padding: 48px 0; background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.card { background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%); border: 2px solid #e5e7eb; border-radius: 14px; padding: 24px 18px; box-shadow: 0 8px 20px rgba(11,99,213,.06); transition: all .2s ease; text-align: center; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(11,99,213,.12); border-color: rgba(11,99,213,.3); }
.card-highlight { background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%); }
.card-icon { margin-bottom: 16px; display: flex; justify-content: center; align-items: center; }
.card h3 { margin: 0 0 10px; font-size: 17px; font-weight: 700; color: #0a1435; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.delivery { padding: 40px 0; background: linear-gradient(180deg,#f7f9fc 0,#fff 100%); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.delivery-intro { text-align: center; max-width: 800px; margin: 0 auto 24px; color: var(--text); font-size: 16px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.delivery .col { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; text-align: center; }
.delivery .col h3 { margin: 0 0 8px; font-size: 18px; color: var(--text); }
.delivery-price { margin: 0; font-size: 20px; font-weight: 700; color: var(--blue); }
.delivery-pickup { margin-top: 24px; text-align: center; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; }
.delivery-pickup p { margin: 8px 0; }
.delivery-note { margin-top: 12px; color: var(--muted); text-align: center; }

.faq { padding: 40px 0; }
.accordion details { border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 14px; margin-bottom: 10px; background: #fff; }
.accordion summary { cursor: pointer; font-weight: 600; }
.accordion .answer { color: var(--muted); margin-top: 8px; }

.cta-form { padding: 48px 0; background: linear-gradient(180deg,#fff 0,#f8fbff 100%); }

.site-footer { background: linear-gradient(135deg, #0a1435 0%, #1a2855 100%); color: #e5e7eb; padding: 48px 0 28px; margin-top: 0; border-top: 3px solid #0b63d5; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { margin: 0 0 12px; font-size: 18px; font-weight: 700; color: #fff; }
.footer-tagline { margin: 0 0 8px; color: #b0c4de; font-size: 14px; }
.footer-address { margin-top: 8px; }
.footer-address p { margin: 4px 0; color: #b0c4de; font-size: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: #c7d2fe; text-decoration: none; font-size: 14px; transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }
.site-footer a { color: #c7d2fe; text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-copy { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); color: #8b9dc3; font-size: 13px; }
.footer-contacts { text-align: left; }
.footer-link { display: block; margin: 8px 0; font-size: 15px; font-weight: 500; }
.footer-cta { display: inline-block; margin-top: 16px; background: #0b63d5; color: #fff; border: 0; }
.footer-cta:hover { background: #0a58c8; color: #fff; }

.thanks { text-align: center; padding: 64px 0; }
.thanks h1 { font-size: 32px; margin-bottom: 8px; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; z-index: 1000; }
.modal:target { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 20, 53, .45); z-index: 10; }
.modal-dialog { position: absolute; inset: 0; display: grid; place-items: center; padding: 16px; z-index: 20; }
.modal-x { position: absolute; top: 8px; right: 12px; text-decoration: none; color: var(--muted); font-size: 22px; line-height: 1; z-index: 30; padding: 4px 8px; }
.modal-x:hover { color: var(--text); }
.modal-close { position: absolute; inset: 0; display: block; cursor: default; }

/* Tablet */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-contacts { text-align: left; }
  .footer-col { text-align: left; }
  .hero-text h1 { font-size: 32px; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 12px; }
  
  /* Header */
  .header-inner { padding: 12px 12px; }
  .brand { flex: 1; }
  .brand-name { font-size: 16px; }
  
  /* Show burger menu */
  .burger-menu { display: flex; }
  
  /* Hide nav by default, show as dropdown */
  .header-nav {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    z-index: 25;
  }
  
  .header-nav.active {
    max-height: calc(100vh - 55px);
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .header-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    display: block;
  }
  
  .header-nav .header-email,
  .header-nav .header-phone {
    color: var(--text);
    text-decoration: none;
  }
  
  .header-nav .btn {
    margin: 8px 16px;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    border-bottom: none !important;
  }
  
  .header-nav .btn-ghost {
    border: 2px solid var(--blue) !important;
  }
  
  .header-nav .btn-primary {
    border: none !important;
  }
  
  /* Hero */
  .hero { padding: 24px 0; }
  .hero-text h1 { font-size: 18px; line-height: 1.3; margin: 6px 0 8px; }
  .subtitle { font-size: 13px; margin-bottom: 10px; }
  .bullets { font-size: 12px; padding-left: 16px; margin: 10px 0; }
  .bullets li { margin: 5px 0; }
  .hero-cta { margin-top: 14px; flex-direction: column; gap: 8px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-visual { min-height: 200px; }
  .hero-visual:empty::before { height: 200px; }
  
  /* Forms */
  .form-card { padding: 16px; border-radius: 12px; }
  .form-card-lg { padding: 20px; border-radius: 14px; }
  .form-card h2 { font-size: 22px; margin-bottom: 6px; }
  .form-subtitle { font-size: 14px; margin-bottom: 18px; }
  .form-grid { gap: 14px; }
  label { font-size: 13px; }
  input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea { 
    padding: 11px 12px; 
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }
  textarea { min-height: 80px; }
  .btn-large { padding: 12px 20px; font-size: 15px; }
  
  /* Sections */
  .section-title { font-size: 22px; margin-bottom: 18px; }
  .features, .delivery, .faq, .cta-form { padding: 32px 0; }
  
  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 18px 14px; border-radius: 12px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }
  
  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 10px; border-radius: 12px; }
  .product-title { font-size: 13px; margin-top: 8px; }
  
  /* Delivery */
  .delivery-intro { font-size: 14px; margin-bottom: 18px; }
  .delivery .col { padding: 16px; border-radius: 10px; }
  .delivery .col h3 { font-size: 16px; }
  .delivery-price { font-size: 18px; }
  .delivery-pickup { padding: 16px; margin-top: 18px; border-radius: 10px; }
  .delivery-pickup p { font-size: 14px; }
  
  /* FAQ */
  .accordion details { padding: 12px; border-radius: 8px; margin-bottom: 8px; }
  .accordion summary { font-size: 14px; }
  .accordion .answer { font-size: 13px; margin-top: 10px; line-height: 1.5; }
  
  /* Footer */
  .site-footer { padding: 32px 0 20px; }
  .footer-grid { gap: 20px; }
  .footer-heading { font-size: 16px; margin-bottom: 10px; }
  .footer-tagline { font-size: 13px; }
  .footer-address p { font-size: 13px; }
  .footer-nav a { font-size: 13px; }
  .footer-link { font-size: 14px; margin: 6px 0; }
  .footer-cta { margin-top: 12px; font-size: 13px; padding: 10px 16px; }
  .footer-copy { font-size: 12px; margin-top: 16px; padding-top: 14px; }
  
  /* Modal */
  .modal-dialog { padding: 12px; }
  .form-card { max-width: 100%; }
  
  /* Thanks page */
  .thanks { padding: 48px 0; }
  .thanks h1 { font-size: 24px; }
  .thanks p { font-size: 14px; }
}

/* Products */
.products { padding: 40px 0; background: #fff; }
.products-category { margin: 16px 0 8px; font-size: 18px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { margin: 0; border: 1px solid #e5e7eb; border-radius: 14px; padding: 12px; background: linear-gradient(180deg,#ffffff 0%, #f9fbff 100%); text-align: center; box-shadow: 0 10px 24px rgba(11,99,213,.06); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(11,99,213,.12); border-color: rgba(11,99,213,.25); }
.product-thumb { width: 100%; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: #f4f6f8; display: grid; place-items: center; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-title { margin-top: 10px; font-size: 14px; font-weight: 600; color: #0a1435; }
.muted { color: var(--muted); }

@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}


