 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple: #6C5CE7;
    --purple-light: #A29BFE;
    --purple-pale: #EEEEFF;
    --purple-dark: #4834D4;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8888AA;
    --bg-page: #F7F7FC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0E2A;
    --radius: 16px;
    --radius-sm: 10px;
    --border: 1px solid #EEEEF8;
    --shadow: 0 4px 24px rgba(108,92,231,0.09);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── HERO SECTION ── */
  .hero {
    padding: 72px 5% 64px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .hero-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    color: var(--purple); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; margin-top: 60px;
  }
  .hero-title {font-size: clamp(2.4rem, 4.5vw, 3.8rem);font-weight: 800; line-height: 1.1;color: var(--bg-dark); margin-bottom: 1.25rem;letter-spacing: -0.03em;}
  .hero p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 420px; }

  .perks { display: flex; gap: 28px; flex-wrap: wrap; }
  .perk { display: flex; flex-direction: column; gap: 6px; max-width: 130px; }
  .perk-icon {
    width: 44px; height: 44px; background: var(--purple);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }
  .perk-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; }
  .perk strong { font-size: 14px; font-weight: 700; color: var(--text-dark); }
  .perk span { font-size: 12px; color: var(--text-mid); line-height: 1.4; }
@media (max-width: 600px){
  .perks{
    flex-wrap: nowrap;
    justify-content: space-between;
  }
.perk strong{
  display: block;
  min-height: 50px;
}
  .perk{
    flex: 1;
    max-width: none;
    align-items: center;
    text-align: center;
  }
}
  /* Envelope illustration */
  .envelope-wrap {
    display: flex; justify-content: center; align-items: center;
    position: relative;
  }
  .envelope-bg {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(162,155,254,0.18) 0%, transparent 70%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .envelope-svg { width: 260px; filter: drop-shadow(0 20px 40px rgba(108,92,231,0.2)); }
  .dots-deco {
    position: absolute; top: 20px; right: 20px;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 5px;
  }
  .dot-item { width: 5px; height: 5px; border-radius: 50%; background: var(--purple-light); opacity: 0.5; }

  /* ── MAIN GRID ── */
  .main-grid {
    background: var(--bg-page);
    padding: 56px 5%;
  }
  .main-grid-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }

  /* ── FORM CARD ── */
  .card {
    background: white; border-radius: var(--radius);
    border: var(--border); padding: 36px;
    box-shadow: var(--shadow);
  }
  .card h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
  .card > p { font-size: 13px; color: var(--text-mid); margin-bottom: 28px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .form-row.full { grid-template-columns: 1fr; }

  .field {
    display: flex; flex-direction: column; gap: 0;
  }
  .field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #E8E8F0; border-radius: 10px;
    font-family: inherit; font-size: 14px; color: var(--text-dark);
    background: #FAFAFF; outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
  }
  .field input::placeholder, .field select::placeholder, .field textarea::placeholder {
    color: var(--text-light);
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--purple); background: white;
  }
  .field textarea { height: 110px; }
  .field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888AA' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

  .form-label-sm { font-size: 12px; color: var(--text-mid); margin-bottom: 6px; font-weight: 500; }

  .btn-submit {
    background: var(--purple); color: white; border: none;
    padding: 14px 28px; border-radius: 10px; font-family: inherit;
    font-size: 15px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s; margin-top: 8px;
    width: fit-content;
    margin-left: auto;
  }
  .btn-submit:hover { background: var(--purple-dark); transform: translateY(-1px); }

  .privacy-note {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: var(--text-light); margin-top: 14px;
  }
  .privacy-note svg { width: 14px; height: 14px; stroke: var(--text-light); fill: none; stroke-width: 1.5; flex-shrink: 0; }

  /* ── CONTACT CHANNELS ── */
  .channels-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
  .channels-card > p { font-size: 13px; color: var(--text-mid); margin-bottom: 22px; }

  .channel-list { display: flex; flex-direction: column; gap: 0; }
  .contact-social{
    display: flex;
    border-bottom: 1px solid #F0F0F8;
    width: 100%;
  }
  .channel-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 0; 
    cursor: pointer; transition: background 0.15s;
    text-decoration: none; color: inherit;
  }
  .channel-item:last-child { border-bottom: none; }
  .channel-item:hover .channel-arrow { opacity: 1; transform: translateX(2px); }

  .channel-icon {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .channel-icon svg { width: 20px; height: 20px; }
  .ch-wa { background: #E8F8F0; }
  .ch-wa svg { stroke: #25D366; fill: none; stroke-width: 1.8; }
  .ch-mail { background: var(--purple-pale); }
  .ch-mail svg { stroke: var(--purple); fill: none; stroke-width: 1.8; }
  .ch-phone { background: #FFF0E8; }
  .ch-phone svg { stroke: #FF6B35; fill: none; stroke-width: 1.8; }
  .ch-social { background: #F0F4FF; }
  .ch-social svg { stroke: #4B6FDE; fill: none; stroke-width: 1.8; }

  .social-link{ text-decoration: none;}
  .channel-info { flex: 1; }
  .channel-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
  .channel-info span { display: block; font-size: 12px; color: var(--text-mid); }
  .channel-info .channel-link {display: block;color: var(--purple);font-weight: 600;font-size: 13px;text-decoration: none;}

  .channel-arrow {
    width: 20px; height: 20px; opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
  }
  .channel-arrow svg { width: 100%; height: 100%; stroke: var(--text-mid); fill: none; stroke-width: 2; }

  .social-icons { display: flex; gap: 8px; margin-top: 6px; }
  .soc-btn {
    width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid #E0E0F0;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: border-color 0.2s, background 0.2s; text-decoration: none;
  }
  .soc-btn:hover { border-color: var(--purple); background: var(--purple-pale); }
  .soc-btn svg { width: 15px; height: 15px; stroke: var(--text-mid); fill: none; stroke-width: 1.8; }

  /* ── MAP + OFFICE ── */
  .map-section {
    padding: 0 5% 56px;
    background: var(--bg-page);
  }
  .map-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .map-card {
    background: white; border-radius: var(--radius); border: var(--border);
    overflow: hidden; box-shadow: var(--shadow); min-height: 240px;
    position: relative;
  }
  .map-placeholder {
    width: 100%; height: 100%; min-height: 240px;
    background: #E8EDF5;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  /* Fake map grid */
  .map-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(108,92,231,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(108,92,231,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .map-roads {
    position: absolute; inset: 0; pointer-events: none;
  }
  .map-popup {
    background: white; border-radius: 10px; padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 2; position: relative;
    display: flex; align-items: center; gap: 10px;
  }
  .pin-dot {
    width: 32px; height: 32px; background: var(--purple);
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    flex-shrink: 0; box-shadow: 0 4px 12px rgba(108,92,231,0.4);
  }
  .pin-dot::after {
    content: ''; width: 12px; height: 12px;
    background: white; border-radius: 50%;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  }
  .map-popup-text { transform: none; }
  .map-popup-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); }
  .map-popup-text span { font-size: 11px; color: var(--text-mid); }

  .office-card {
    background: white; border-radius: var(--radius); border: var(--border);
    padding: 36px; box-shadow: var(--shadow);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .office-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
  .office-card > p { font-size: 13px; color: var(--text-mid); margin-bottom: 24px; }

  .office-details { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; margin-top: 28px;}
  .office-detail { display: flex; align-items: flex-start; gap: 10px; }
  .office-detail-icon {
    width: 34px; height: 34px; background: var(--purple-pale);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .office-detail-icon svg { width: 16px; height: 16px; stroke: var(--purple); fill: none; stroke-width: 1.8; }
  .office-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); }
  .office-detail span { font-size: 12px; color: var(--text-mid); }

  .btn-agenda {
    background: var(--purple); color: white; border: none;
    padding: 13px 24px; border-radius: 10px; font-family: inherit;
    font-size: 14px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; text-decoration: none; width: fit-content;
  }
  .btn-agenda:hover { background: var(--purple-dark); transform: translateY(-1px); }
  .btn-agenda svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

  /* ── CTA FOOTER ── */
  .cta-section {
    background: var(--bg-dark); padding: 72px 5%;
  }
  .cta-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  }
  .cta-text h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 10px; }
  .cta-text p { color: rgba(255,255,255,0.55); font-size: 14px; }
  .btn-cta {
    background: var(--purple); color: white; border: none;
    padding: 15px 30px; border-radius: 12px; font-family: inherit;
    font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
  }
  .btn-cta:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.4); }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .envelope-wrap { display: none; }
    .main-grid-inner, .map-inner { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }