﻿/* style.css (FULL - Updated) */

/* ====== CSS Reset / Base ====== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

:root{
  --brand-blue: #1e3a5f;
  --brand-blue2: #4a6fa5;
  --brand-red: #b54a4a;
  --brand-nav: #2a3544;
  --brand-btn-gray: #e8eef4;
  --brand-soft: #f5f7fa;
  --brand-line: #4a6fa5;

  --border: #e2e8f0;
  --muted: #64748b;
  --text: #1e293b;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(30, 58, 95, .06);
  --radius: 16px;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(74, 111, 165, .08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(30, 58, 95, .05), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.hidden { display: none !important; }

/* ====== Layout Helpers ====== */
.container{
  max-width: 1152px; /* max-w-6xl */
  margin: 0 auto;
  padding: 0 16px;
}

/* ====== Topbar ====== */
.topbar{
  background: linear-gradient(90deg, #1e3a5f 0%, #2d4a6f 100%);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.topbar__left{
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__right{
  display: flex;
  align-items: center;
  margin-left: auto;
}
.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-switch__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border: 1px solid transparent;
  opacity: .72;
  transition: opacity .15s ease, background .15s ease, border-color .15s ease;
}
.lang-switch__btn:hover{
  opacity: 1;
  background: rgba(255,255,255,.2);
}
.lang-switch__btn.is-active{
  opacity: 1;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.22);
}

/* ====== Header ====== */
.site-header{
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.site-header--video{
  border-bottom: none;
}
.header-video{
  width: 100%;
  line-height: 0;
  background: #0a1f3d;
  overflow: hidden;
}
.header-video__media{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1900 / 700;
  object-fit: cover;
  object-position: center;
}
.header-video__bar{
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-video__bar-inner{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 0;
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.header__brand-wrap{
  display: flex;
  align-items: center;
}
.header__tagline{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.35;
  color: var(--brand-blue2);
  text-align: right;
  flex-shrink: 0;
  margin-left: auto;
}
.brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0, 38, 84, 0.12);
}
.brand img{
  height: 64px;
  width: auto;
}

.nav{
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #334155;
  align-items: center;
}
.nav a{
  text-decoration: none;
}
.nav a:hover{
  color: var(--brand-blue2);
}
.nav .active{
  color: var(--brand-blue2);
}

/* ====== Dropdown Menu ====== */
.nav-dropdown{
  position: relative;
}
.nav-dropdown__trigger{
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}
.nav-dropdown__trigger i{
  font-size: 10px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown.active .nav-dropdown__trigger{
  color: var(--brand-blue2);
}
.nav-dropdown:hover .nav-dropdown__trigger i,
.nav-dropdown.active .nav-dropdown__trigger i{
  transform: rotate(180deg);
}
.nav-dropdown .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
  list-style: none;
}
.nav-dropdown:hover .sub-menu,
.nav-dropdown.active .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ====== Sub Menu Items ====== */
.sub-menu .menu-item{
  margin: 0;
}
.sub-menu .elementor-sub-item{
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
}
.sub-menu .elementor-sub-item:hover{
  background: var(--brand-soft);
  color: var(--brand-blue2);
  text-decoration: none;
}

/* ====== Hero ====== */
.hero{ color: #fff; text-align: center; }
.hero-bg{
  background-image:
    linear-gradient(to right, rgba(0, 38, 84, .82), rgba(47, 85, 151, .55)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.hero__inner{ padding: 56px 0; }
.hero__title{
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ====== Main Grid ====== */
.main{ padding: 40px 0; }
.layout{
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px){
  .layout{
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
  .sticky{
    position: sticky;
    top: 24px;
  }
}

/* ====== Cards ====== */
.card{
  background: var(--card-bg);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card__body{ padding: 28px; }
.card__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.divider{
  height: 2px;
  width: 48px;
  background: linear-gradient(90deg, var(--brand-blue2), transparent);
  margin-top: 12px;
  border-radius: 2px;
}

/* ====== Announcement notice ====== */
.announce{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid #c5d5ea;
  background:
    linear-gradient(135deg, rgba(74, 111, 165, .10) 0%, rgba(238, 243, 249, .95) 48%, #fff 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.announce::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue2));
}
.announce__icon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(30, 58, 95, .22);
}
.announce__body{ min-width: 0; flex: 1; }
.announce__badge{
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 58, 95, .08);
  color: var(--brand-blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announce__text{
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.9;
  color: var(--brand-blue);
}
.announce__deal{
  display: inline;
  padding: 0.12em 0.45em;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #b8c9e0;
  color: #1f5a32;
  font-weight: 800;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 1px 2px rgba(30, 58, 95, .06);
}
@media (max-width: 640px){
  .announce{
    gap: 14px;
    padding: 18px;
  }
  .announce__icon{
    width: 40px;
    height: 40px;
    font-size: .95rem;
  }
  .announce__text{ font-size: 1rem; line-height: 1.85; }
}

/* ====== Shared info panels (fees / bank) ====== */
.panel{
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid #c5d5ea;
  background:
    linear-gradient(135deg, rgba(74, 111, 165, .08) 0%, rgba(238, 243, 249, .92) 45%, #fff 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.panel::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue2));
}
.panel__head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.panel__icon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(30, 58, 95, .22);
}
.panel__icon--bank{
  background: linear-gradient(145deg, #2a4a6f, var(--brand-blue2));
}
.panel__badge{
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 58, 95, .08);
  color: var(--brand-blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.panel__title{
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.fee-grid{
  display: grid;
  gap: 12px;
}
@media (min-width: 560px){
  .fee-grid{ grid-template-columns: repeat(2, 1fr); }
}
.fee-card{
  background: #fff;
  border: 1px solid #d5e0ee;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(30, 58, 95, .05);
}
.fee-card__label{
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--brand-blue);
  line-height: 1.35;
}
.fee-card__price{
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f5a32;
  line-height: 1.35;
}

.bank-list{
  margin: 0;
  display: grid;
  gap: 8px;
}
.bank-list__row{
  display: grid;
  grid-template-columns: minmax(110px, 34%) 1fr;
  gap: 10px 14px;
  align-items: center;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #dce5f0;
}
.bank-list__row dt{
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.bank-list__row dd{
  margin: 0;
  font-size: .98rem;
  font-weight: 600;
  color: var(--brand-blue);
  word-break: break-word;
}
.bank-list__row--iban{
  background: #fff;
  border-color: #b8c9e0;
  box-shadow: 0 1px 2px rgba(30, 58, 95, .06);
}
.bank-list__row--iban dd code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #1f5a32;
  background: #edf6e8;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
}
.bank-list__hint{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(30, 58, 95, .06);
  border: 1px dashed #b8c9e0;
  color: #334155;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.45;
}
.bank-list__hint i{
  margin-top: 2px;
  color: var(--brand-blue2);
}
@media (max-width: 640px){
  .panel{ padding: 18px; }
  .panel__icon{
    width: 40px;
    height: 40px;
    font-size: .95rem;
  }
  .panel__title{ font-size: 1.12rem; }
  .bank-list__row{
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ====== Alerts ====== */
.alert{
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: #fff;
}
.alert--success{
  background: #eef3f9;
  border-color: #b8c9e0;
  color: var(--brand-blue);
  font-weight: 600;
}
.alert--error{
  background: #fdf2f2;
  border-color: #e8b4b4;
  color: var(--brand-red);
  font-weight: 600;
}
.alert--info{
  background: #eef3f9;
  border-color: #b8c9e0;
  color: var(--text);
}
.alert--info p{ margin: 0; }
.alert--warning{
  background: #fffbeb;
  border-color: #f0d78c;
  color: #854d0e;
  font-weight: 500;
}

/* ====== Typography Helpers ====== */
.small-muted{
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}
.tiny-muted{
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

/* ====== Overview Boxes ====== */
.kpi-grid{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 640px){
  .kpi-grid{ grid-template-columns: repeat(3, 1fr); }
}
.kpi{
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
}
.kpi__label{
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
}
.kpi__value{
  margin-top: 6px;
  font-weight: 700;
  color: #0f172a;
}

/* ====== Fees table ====== */
.table-wrap{ overflow-x: auto; margin-top: 18px; }
.fees-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.fees-table td{ padding: 12px 16px; }

.fees-table--pricing{
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
}
.fees-table--pricing th,
.fees-table--pricing td{
  border: none;
  border-bottom: 1px solid #e8eef5;
  padding: 16px 18px;
  vertical-align: middle;
}
.fees-table--pricing tr:last-child th,
.fees-table--pricing tr:last-child td{
  border-bottom: none;
}
.fees-table--pricing thead th{
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  background: #f4f7fb;
  color: var(--brand-blue);
}
.fees-table--pricing thead th:first-child{
  background: #f4f7fb;
}
.fees-table--pricing tbody th{
  text-align: left;
  font-weight: 700;
  background: #fff;
  color: #0f172a;
  width: 34%;
}
.fees-table--pricing .fees-price{
  text-align: center;
  font-weight: 600;
  background: #edf6e8;
  color: #2f5d3a;
  border-radius: 0;
}

.row-blue{ background: var(--brand-blue); color: #fff; }
.row-blue2{ background: var(--brand-blue2); color: #fff; }
.row-soft{ background: #f8fafc; }
.row-white{ background: #fff; }

.td-right{ text-align: right; font-weight: 700; }
.td-strong{ font-weight: 600; }

/* ====== Payment boxes ====== */
.pay-grid{
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 640px){
  .pay-grid{ grid-template-columns: repeat(2, 1fr); }
}
.pay-box{
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
}
.pay-box__title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.pay-box__desc{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.note{
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid #dce5f0;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  padding: 18px;
  font-size: 14px;
  color: var(--text);
}
.note b{ color: var(--brand-blue); font-weight: 600; }

/* ====== Warning box ====== */
.warning{
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid #e8b4b4;
  background: #fdf2f2;
  padding: 14px;
  color: var(--brand-red);
}
.warning__title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.warning__text{
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}

/* ====== Right Form ====== */
.form-card{
  overflow: hidden;
  border: 1px solid #c5d5ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
}
.form-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue2));
  z-index: 2;
}

.form-card--success{
  background: #fff;
  border-color: #9eb6d4;
}
.form-card--success::before{
  background: linear-gradient(180deg, #1f7a45, #2f9e5f);
}
.reg-success{
  padding: 0;
  color: var(--text);
}
.reg-success__top{
  padding: 28px 26px 26px 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 58, 95, .97) 0%, #35567f 55%, #4a6fa5 140%),
    linear-gradient(135deg, #1e3a5f 0%, #35567f 100%);
}
.reg-success__icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
.reg-success__kicker{
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.reg-success__title{
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.reg-success__lead{
  margin: 0 0 18px;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 36em;
}
.reg-success__code{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
}
.reg-success__code-label{
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.reg-success__code-row{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reg-success__code-value{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: #fff;
  word-break: break-all;
}
.reg-success__copy{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #fff;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.reg-success__copy:hover{
  background: rgba(255,255,255,.22);
}
.reg-success__copy.is-copied{
  background: rgba(46, 160, 92, .35);
  border-color: rgba(140, 220, 170, .55);
}

.form-head{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px 24px 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 58, 95, .97) 0%, #35567f 55%, #4a6fa5 140%),
    linear-gradient(135deg, #1e3a5f 0%, #35567f 100%);
  position: relative;
}
.form-head__icon{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.form-head__content{ min-width: 0; flex: 1; }
.form-head__kicker{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}
.form-head__title{
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.form-head__desc{
  margin: 10px 0 0;
  font-size: 14px;
  opacity: .9;
  font-weight: 400;
  line-height: 1.5;
}
.form-head__desc strong{
  font-weight: 700;
  opacity: 1;
  letter-spacing: .02em;
}

.form-body{
  padding: 22px 24px 24px 30px;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 48px);
}
.form{ display: grid; gap: 16px; }
.form-section{
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce5f0;
  box-shadow: 0 1px 2px rgba(30, 58, 95, .04);
}
.form-section__label{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue2);
}
.form-row{
  display: grid;
  gap: 14px;
}
@media (min-width: 560px){
  .form-row{ grid-template-columns: 1fr 1fr; }
}
.form-field{ min-width: 0; }

.label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #334155;
  letter-spacing: 0.01em;
}
.req{
  color: var(--brand-red);
  font-weight: 700;
}

.input,
.select{
  width: 100%;
  border: 1px solid #d0dae8;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  background: #fbfcfe;
  font-weight: 400;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-blue2) 50%),
    linear-gradient(135deg, var(--brand-blue2) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.input::placeholder{ color: #94a3b8; }
.input:hover,
.select:hover{
  border-color: #b8c9e0;
  background: #fff;
}
.input:focus,
.select:focus{
  border-color: var(--brand-blue2);
  background: #fff;
  box-shadow: 0 4px 14px rgba(74, 111, 165, .12), 0 0 0 3px rgba(74, 111, 165, .14);
}

.help{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
}

.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-errors{
  margin-bottom: 14px;
}
.form-errors__title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.form-errors ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.form-errors li{ margin: 4px 0; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #1e3a5f 0%, #2f5080 100%);
  box-shadow: 0 8px 20px rgba(30, 58, 95, .18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(30, 58, 95, .22);
  transform: translateY(-1px);
}
.btn:active{
  transform: translateY(0);
  filter: brightness(.98);
}
@media (max-width: 640px){
  .form-head,
  .form-body{
    padding-left: 22px;
    padding-right: 18px;
  }
  .form-head__title{ font-size: 1.22rem; }
  .form-section{ padding: 14px; }
}

/* Document buttons (e.g. under Cancellation Policy) */
.doc-buttons{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.doc-buttons__label{
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px 0;
  font-weight: 600;
}
.doc-buttons__row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn--doc{
  width: auto;
  min-width: 180px;
  flex: 1;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}
.btn--doc:hover{ text-decoration: none; }
.btn--doc i{ font-size: 1.1em; }

/* ====== Error list (right side) ====== */
.fixbox{
  margin-bottom: 16px;
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--brand-red);
  font-size: 14px;
}
.fixbox b{
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.fixbox ul{ margin: 0; padding-left: 18px; }
.fixbox li{ font-weight: 400; }

/* ====== App band ====== */
.appband{
  color: #fff;
  background: var(--brand-blue);
}
.appband__inner{
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px){
  .appband__inner{
    flex-direction: row;
    gap: 18px;
  }
}
.appband__title{
  font-size: 18px;
  font-weight: 800;
}
.storebtns{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.storebtn{
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.storebtn:hover{
  background: rgba(255,255,255,.18);
  text-decoration: none;
}

/* ====== Footer ====== */
.footer{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.footer__grid{
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
@media (min-width: 768px){
  .footer__grid{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
}
.footer__brand{
  flex-shrink: 0;
}
.footer__contact{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
}
@media (min-width: 768px){
  .footer__contact{
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
  }
}
.footer__title{
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #475569;
}
.footer__list a{ text-decoration: none; }
.footer__list a:hover{
  color: var(--brand-blue2);
}
.footer__muted{
  color: #475569;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.phonepill{
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-blue);
  font-weight: 700;
  font-size: 13px;
}

.footer__bottom{
  border-top: 1px solid var(--border);
  padding: 16px 0;
  color: #64748b;
  font-size: 12px;
}
.footer__bottom-inner{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 640px){
  .footer__bottom-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__bottom a{
  text-decoration: none;
}
.footer__bottom a:hover{
  color: var(--brand-blue2);
}
.bottom-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ====== Small spacing helpers ====== */
.stack-8{ display: grid; gap: 20px; }
.stack-6{ display: grid; gap: 16px; }

/* ====== Mobile tweaks ====== */
@media (max-width: 768px){
  .nav-dropdown .sub-menu{
    min-width: 240px;
    right: 0;
    left: auto;
  }
}
@media (max-width: 480px){
  .hero__title{ font-size: 28px; }
  .brand img{ height: 52px; }
  .header__tagline{ font-size: 13px; }
  .nav-dropdown .sub-menu{
    min-width: calc(100vw - 32px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
  }
  .nav-dropdown:hover .sub-menu,
  .nav-dropdown.active .sub-menu{
    transform: translateX(-50%) translateY(0);
  }
}

