:root {
  --navy: #061a2f;
  --navy2: #0b2b4d;
  --ink: #101828;
  --text: #475467;
  --line: #d9e1ec;
  --soft: #f3f6fa;
  --gold: #f0c542;
  --gold2: #d6a92e;
  --white: #fff;
  --green: #147a50;
  --red: #b42318;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: .03;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 4px 4px;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.header {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.logo span {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
}

.logo strong { font-size: 20px; }

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav button {
  border: 0;
  background: none;
  font-weight: 800;
  color: #253347;
}

.nav button:hover { color: var(--gold2); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-pill {
  border: 1px solid var(--line);
  background: white;
  padding: 12px 14px;
  font-weight: 900;
  color: var(--navy);
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 30px;
}

.btn {
  border: 1px solid transparent;
  padding: 14px 20px;
  font-weight: 900;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-outline {
  background: white;
  border-color: var(--line);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-white {
  background: white;
  color: var(--navy);
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold), #ffe38a, var(--gold2));
  background-size: 220% 100%;
  color: #111;
}

.btn-shine:hover {
  animation: shine 1.2s linear infinite;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

@keyframes shine {
  from { background-position: 0 0; }
  to { background-position: 220% 0; }
}

.page { display: none; }
.page.active { display: block; animation: pageIn .45s ease both; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(240,197,66,.16), transparent 32%),
    linear-gradient(135deg, #061a2f, #08233f 55%, #061a2f);
  color: white;
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 16px;
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .93;
  letter-spacing: -.06em;
  margin-bottom: 26px;
}

.hero p {
  color: #dce8f6;
  font-size: 20px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
}

.brand-strip {
  background: white;
  border-bottom: 1px solid var(--line);
}

.brand-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.brand-inner span {
  font-weight: 900;
  color: #344054;
}

.section {
  padding: 96px 0;
}

.editorial-grid,
.image-editorial,
.contact-page-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.05em;
}

.editorial-text p,
.image-editorial p,
.page-hero p,
.contact-copy p,
.policy-card p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.dark-section {
  background: var(--navy);
  color: white;
}

.dark-section p { color: #dce8f6; }

.image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.page-hero {
  background: var(--navy);
  color: white;
  padding: 90px 0;
}

.page-hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
  max-width: 960px;
}

.page-hero p { max-width: 780px; }

.service-feature {
  padding: 100px 0;
  background: white;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
}

.service-index {
  display: grid;
  gap: 12px;
  align-content: start;
  position: sticky;
  top: 120px;
}

.service-index button {
  border: 1px solid var(--line);
  background: white;
  text-align: left;
  padding: 20px;
  font-weight: 900;
  font-size: 20px;
}

.service-index button.active,
.service-index button:hover {
  background: var(--navy);
  color: white;
}

.service-display {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(6,26,47,.94), rgba(11,43,77,.88)),
    url("images/photo-1551288049-bebda4e38f71.avif") center/cover;
  color: white;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-display span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
}

.service-display p {
  color: #dce8f6;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

.service-display ul {
  columns: 2;
  padding-left: 20px;
  color: #f5f9ff;
}

.timeline-section {
  padding: 100px 0;
  background: white;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px .8fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.timeline-item span {
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .12em;
}

.timeline-item h3 {
  font-size: 32px;
  margin: 0;
}

.timeline-item p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.case-showcase {
  padding: 100px 0;
}

.case-showcase-grid {
  display: grid;
  gap: 34px;
}

.case-large {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--soft);
  align-items: center;
}

.case-large:nth-child(even) {
  grid-template-columns: 1.1fr .9fr;
}

.case-large img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.case-large div {
  padding: 48px;
}

.domain-market {
  padding: 90px 0;
  background: var(--soft);
}

.uk-note {
  background: var(--navy);
  color: white;
  padding: 34px;
  margin-bottom: 34px;
}

.uk-note p {
  color: #dce8f6;
  font-size: 18px;
  line-height: 1.7;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.domain-card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(16,24,40,.06);
  transition: .25s;
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(16,24,40,.12);
}

.domain-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.domain-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin: 16px 0;
}

.domain-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.domain-stats div {
  background: var(--soft);
  padding: 12px;
}

.domain-stats strong {
  display: block;
  color: var(--navy);
}

.domain-stats span {
  color: var(--text);
  font-size: 13px;
}

.contact-page {
  min-height: calc(100vh - 84px);
  background: var(--soft);
  padding: 90px 0;
}

.contact-copy img {
  margin-top: 34px;
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.premium-form,
.policy-card,
.client-panel {
  background: white;
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 0 30px 80px rgba(16,24,40,.08);
}

.premium-form label,
.modal-card label,
.profile-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.premium-form input,
.premium-form textarea,
.premium-form select,
.modal-card input,
.profile-form input,
.profile-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px;
  margin-top: 8px;
  background: white;
}

.premium-form textarea {
  min-height: 150px;
}

#contactResult,
#loginError {
  color: var(--green);
  font-weight: 900;
}

.policy-card {
  max-width: 940px;
}

.policy-card h2 {
  font-size: 34px;
  margin-top: 28px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dash-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: white;
}

.ref-link {
  background: var(--navy);
  color: white;
  padding: 16px;
  word-break: break-all;
  margin-top: 10px;
}

.request-box {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--soft);
  margin-top: 20px;
}

.status {
  display: inline-block;
  padding: 8px 12px;
  font-weight: 900;
  background: #fff2c7;
  color: #7a5600;
  margin-bottom: 12px;
}

.status.approved {
  background: #dcfce7;
  color: #166534;
}

.pay-box {
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.open {
  display: grid;
  place-items: center;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(6,26,47,.72);
}

.modal-card {
  position: relative;
  background: white;
  width: min(520px, calc(100% - 40px));
  padding: 38px;
  z-index: 1;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}

.close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: none;
  font-size: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: .9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .nav.open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn { display: block; }

  .hero-grid,
  .editorial-grid,
  .image-editorial,
  .service-feature-grid,
  .contact-page-grid,
  .case-large,
  .case-large:nth-child(even),
  .timeline-item,
  .dashboard-grid,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame img {
    height: 380px;
  }

  .service-display {
    padding: 32px;
  }

  .service-display ul {
    columns: 1;
  }

  .header-actions .btn-dark,
  .header-actions .btn-outline {
    display: none;
  }
}
.contact-details{

margin:40px 0;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.contact-item{

background:#fff;

padding:24px;

border:1px solid #ececec;

border-radius:14px;

box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.contact-item h3{

margin-bottom:12px;

font-size:18px;

color:#111;

}

.contact-item p{

margin:0;

line-height:1.7;

color:#555;

}

@media(max-width:768px){

.contact-details{

grid-template-columns:1fr;

}

}