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

:root{
  --black:#070707;
  --black2:#111111;
  --gold:#b89d58;
  --gold-bright:#d5b866;
  --off:#f6f4ee;
  --white:#ffffff;
  --muted:#6d6d6d;
  --line:rgba(184,157,88,.24);
  --shadow:0 28px 70px rgba(0,0,0,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--off);
  color:#111;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(1160px,calc(100% - 64px));margin-inline:auto}
.skip-link{position:absolute;left:-9999px}
.skip-link:focus{left:16px;top:16px;background:#fff;padding:10px 14px;z-index:9999}

/* HEADER — same component on every viewport */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(246,244,238,.96);
  border-bottom:1px solid rgba(0,0,0,.07);
  backdrop-filter:blur(15px);
}
.nav-wrap{
  height:92px;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:34px;
}
.brand{
  width:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.brand img{
  width:100%;
  height:auto;
  object-fit:contain;
  background:transparent;
  transform:scale(1.35);
  transform-origin:center center;
}
.site-nav{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:700;
}
.site-nav a{transition:.2s ease}
.site-nav a:hover{color:#8b7134}
.nav-cta{
  background:var(--black);
  color:#fff!important;
  border-radius:999px;
  padding:12px 18px;
}
.nav-cta:hover{background:var(--gold);color:#111!important}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
}
.menu-toggle span{
  display:block;
  width:25px;height:2px;
  background:#111;
  margin:5px 0;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 64px;
  background:
    radial-gradient(circle at 85% 14%,rgba(184,157,88,.18),transparent 31%),
    linear-gradient(120deg,#f7f5ef 0%,#f7f5ef 55%,#eee7d5 100%);
}
.hero:before,.hero:after{
  content:"";
  position:absolute;
  border:1px solid rgba(184,157,88,.17);
  border-radius:50%;
  pointer-events:none;
}
.hero:before{width:560px;height:560px;right:-260px;top:-190px}
.hero:after{width:360px;height:360px;right:-105px;top:-75px}
.hero-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:52px;
  align-items:center;
}
.eyebrow{
  margin:0 0 18px;
  color:#8c7437;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}
h1,h2,h3{
  margin-top:0;
  font-family:Manrope,Inter,sans-serif;
  line-height:1.08;
}
h1{
  margin-bottom:24px;
  max-width:800px;
  font-size:clamp(46px,5.7vw,74px);
  letter-spacing:-.055em;
}
h1 span{color:#a88d48}
.hero-lead{
  max-width:700px;
  margin:0 0 30px;
  color:#4b4b4b;
  font-size:18px;
  line-height:1.72;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:38px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-gold{background:var(--gold-bright);color:#111}
.btn-gold:hover{background:#e4c978}
.btn-outline{border-color:#222;background:transparent}
.btn-outline:hover{background:#111;color:#fff}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding-top:23px;
  border-top:1px solid rgba(0,0,0,.12);
}
.hero-proof strong{display:block;font-size:14px;margin-bottom:5px}
.hero-proof span{display:block;color:#707070;font-size:12px;line-height:1.42}

.hero-panel{
  position:relative;
  overflow:hidden;
  min-height:500px;
  padding:30px;
  border:1px solid rgba(213,184,102,.18);
  border-radius:28px;
  background:var(--black);
  color:#fff;
  box-shadow:0 42px 78px rgba(0,0,0,.2);
}
.hero-panel:before{
  content:"";
  position:absolute;
  right:-95px;top:-80px;
  width:300px;height:300px;
  border:1px solid rgba(213,184,102,.32);
  border-radius:50%;
}
.glow{
  position:absolute;
  right:-110px;bottom:-120px;
  width:320px;height:320px;
  border-radius:50%;
  background:rgba(184,157,88,.16);
  filter:blur(22px);
}
.panel-kicker{
  position:relative;
  margin:0 0 23px;
  color:var(--gold-bright);
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
}
.search-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
  padding:13px 17px;
  border-radius:16px;
  background:#fff;
  color:#111;
  font-weight:700;
}
.search-icon{font-size:22px;color:#8c7437}
.stack-card{
  position:relative;
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.stack-icon{
  width:43px;height:43px;
  display:grid;place-items:center;
  border:1px solid rgba(213,184,102,.34);
  border-radius:13px;
  color:var(--gold-bright);
  font-size:12px;font-weight:800;
}
.stack-card b{display:block;margin-bottom:3px}
.stack-card small{color:#aaa}
.mini-cta{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:22px;
  padding:17px;
  border-radius:15px;
  background:rgba(255,255,255,.05);
  font-size:13px;
}
.mini-cta a{color:var(--gold-bright);font-weight:800}

/* TRUST */
.trust-strip{padding:17px 0;background:var(--black);color:#fff}
.trust-inner{display:flex;align-items:center;gap:28px}
.trust-inner>span{
  flex:none;
  color:var(--gold-bright);
  font-size:11px;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase;
}
.trust-list{display:flex;flex-wrap:wrap;gap:13px 23px;color:#d9d9d9;font-size:13px}

/* GENERAL SECTIONS */
.section{padding:84px 0}
.section-head{
  display:grid;
  grid-template-columns:1.1fr .8fr;
  gap:42px;
  align-items:end;
  margin-bottom:36px;
}
.section-head.compact{grid-template-columns:1fr}
.section-head h2,
.why-copy h2,
.packages-copy h2,
.about-copy h2,
.contact-copy h2{
  margin-bottom:0;
  font-size:clamp(34px,4.3vw,54px);
  letter-spacing:-.045em;
}
.section-head>p{max-width:520px;margin:0;color:#686868}

/* SERVICES / PORTFOLIO */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.service-card{
  min-height:300px;
  padding:28px;
  border:1px solid rgba(0,0,0,.07);
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 34px rgba(0,0,0,.035);
  transition:.22s ease;
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.service-card.featured{background:var(--black);color:#fff}
.service-no{
  display:block;
  margin-bottom:34px;
  color:#a88d48;
  font-size:11px;font-weight:800;
  letter-spacing:.04em;
}
.service-card h3{font-size:24px;letter-spacing:-.03em}
.service-card p{color:#6b6b6b}
.service-card.featured p{color:#b8b8b8}
.service-card ul{
  display:grid;gap:9px;
  margin:20px 0 0;padding:0;
  list-style:none;
  font-size:13px;
}
.service-card li:before{content:"✓";margin-right:8px;color:var(--gold-bright)}
.portfolio-grid{grid-template-columns:repeat(2,1fr)}
.portfolio-grid .service-card{min-height:245px}
.text-link{display:inline-block;margin-top:16px;color:#9d813f;font-weight:800}
.featured .text-link{color:var(--gold-bright)}

/* SYSTEMS */
.dark-section{background:var(--black);color:#fff}
.systems-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.process-grid article{
  padding:26px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  background:#fff;
}
.process-grid span{color:#a88d48;font-size:12px;font-weight:800}
.process-grid h3{margin:34px 0 9px;font-size:21px}
.process-grid p{margin:0;color:#6d6d6d;font-size:14px}
.dark-section .process-grid article{
  border-color:rgba(255,255,255,.1);
  background:#111;
  color:#fff;
}
.dark-section .process-grid p{color:#aaa}
.security-note{
  margin-top:24px;
  padding:21px 23px;
  border-left:4px solid var(--gold-bright);
  border-radius:17px;
  background:#151515;
}
.security-note p{margin-bottom:0;color:#aaa}

/* DOMAIN */
.domain-section{background:linear-gradient(135deg,#eee4ca,#f8f6f1)}
.packages-grid{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:58px;
  align-items:center;
}
.packages-copy h2 span{color:#9f843f}
.packages-copy>p:not(.eyebrow){max-width:650px;color:#626262}
.package-card{
  padding:31px;
  border-radius:27px;
  background:var(--black);
  color:#fff;
  box-shadow:0 30px 65px rgba(0,0,0,.16);
}
.domain-card label{
  display:block;
  margin-bottom:10px;
  color:var(--gold-bright);
  font-size:11px;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase;
}
.domain-search{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
}
.domain-search input{
  min-width:0;
  padding:13px 14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:13px;
  background:#1b1b1b;
  color:#fff;
  outline:none;
}
.domain-result{
  margin-top:13px;
  padding:13px;
  border-radius:12px;
  background:#181818;
  color:#bbb;
  font-size:13px;
}
.domain-result.success{border:1px solid rgba(213,184,102,.45);color:#fff}
.domain-result.error{border:1px solid rgba(255,110,110,.4);color:#ffb4b4}
.package-note{margin:18px 0 0;color:#8f8f8f;font-size:11px}

/* WHY */
.why-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
  align-items:start;
}
.why-copy{position:sticky;top:110px}
.why-copy p:not(.eyebrow){max-width:520px;color:#aaa}
.why-points{display:grid;gap:10px}
.why-point{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:17px;
  padding:24px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:19px;
  background:rgba(255,255,255,.025);
}
.why-point>span{color:var(--gold-bright);font-weight:800}
.why-point h3{margin-bottom:7px;font-size:22px}
.why-point p{margin:0;color:#aaa}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

/* PACKAGES */
.packages-section{background:linear-gradient(135deg,#eee6d1,#f8f6f1)}
.package-top{
  margin-bottom:21px;padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.package-top span{display:block;color:var(--gold-bright);font-size:11px;font-weight:800;letter-spacing:.15em}
.package-top strong{display:block;margin-top:7px;font-size:46px;letter-spacing:-.04em}
.package-top small{color:#999}
.package-card ul{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.package-card li:before{content:"✓";margin-right:9px;color:var(--gold-bright)}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:.43fr 1fr;
  gap:60px;
  align-items:center;
}
.about-badge{
  position:relative;
  overflow:hidden;
  min-height:320px;
  padding:31px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-radius:28px;
  background:var(--black);
  color:#fff;
}
.about-badge:before{
  content:"";
  position:absolute;
  right:-95px;top:-95px;
  width:245px;height:245px;
  border:1px solid rgba(213,184,102,.36);
  border-radius:50%;
}
.about-badge span{color:var(--gold-bright);font-size:11px;font-weight:800;letter-spacing:.15em}
.about-badge strong{margin:7px 0 10px;font-size:64px;line-height:1}
.about-badge small{color:#aaa}
.about-copy p:not(.eyebrow){max-width:760px;color:#606060}

/* CONTACT */
.contact-section{background:#fff}
.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:60px;
  align-items:start;
}
.contact-copy>p:not(.eyebrow){max-width:520px;color:#686868}
.contact-lines{display:grid;gap:12px;margin-top:30px}
.contact-lines a{
  display:flex;
  flex-direction:column;
  padding-top:13px;
  border-top:1px solid #ddd;
}
.contact-lines span{
  color:#777;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.contact-lines strong{font-size:17px}
.contact-form{
  padding:28px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  background:#f6f4ee;
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form label{
  display:grid;
  gap:7px;
  margin-bottom:14px;
  color:#555;
  font-size:12px;
  font-weight:800;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:12px 13px;
  border:1px solid #d4d0c6;
  border-radius:12px;
  background:#fff;
  color:#111;
  outline:none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:#a88d48;
  box-shadow:0 0 0 3px rgba(184,157,88,.12);
}
.form-submit{width:100%;border:0}
.form-note{margin:11px 0 0;color:#787878;font-size:11px}
.form-status{min-height:18px;margin:9px 0 0;text-align:center;font-size:12px}
.form-status.success{color:#8a7137;font-weight:700}
.form-status.error{color:#b33b3b;font-weight:700}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}

/* FOOTER */
.site-footer{padding:52px 0 21px;background:#070707;color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr .7fr .7fr;
  gap:56px;
}
.footer-brand img{
  width:120px;
  height:auto;
  background:transparent;
  transform:scale(1.18);
  transform-origin:left center;
}
.footer-brand p{max-width:360px;color:#8f8f8f}
.site-footer h3{margin-bottom:14px;color:var(--gold-bright);font-size:13px}
.footer-grid>div:not(.footer-brand){
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.footer-grid a{margin:3px 0;color:#b9b9b9;font-size:13px}
.footer-grid a:hover{color:#fff}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#777;
  font-size:12px;
}

/* FLOATING CONTROLS */
.floating-whatsapp{
  position:fixed;
  right:20px;bottom:20px;
  z-index:110;
  display:flex;
  align-items:center;
  gap:9px;
  min-height:52px;
  padding:11px 16px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-size:13px;font-weight:800;
  box-shadow:0 14px 32px rgba(0,0,0,.26);
}
.whatsapp-mark{width:27px;height:27px;flex:none}
.floating-whatsapp:hover{transform:translateY(-2px);background:#20bd5a}

.scroll-top{
  position:fixed;
  right:20px;
  bottom:86px;
  z-index:111;
  width:56px;height:56px;
  display:grid;
  place-items:center;
  border:2px solid #111;
  border-radius:50%;
  background:var(--gold-bright);
  color:#111;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
  box-shadow:0 15px 34px rgba(0,0,0,.3);
}
.scroll-top.visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
.scroll-top svg{
  width:28px;height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.scroll-top:hover{background:#ead188;transform:translateY(-2px)}

/* TABLET — same design, only columns adapt */
@media (max-width:1024px){
  .container{width:min(100% - 40px,1160px)}
  .nav-wrap{height:86px}
  .brand{width:110px}
  .brand img{
    width:100%;
    transform:scale(1.32);
    transform-origin:center center;
  }
  .site-nav{gap:20px;font-size:13px}
  .hero{padding:62px 0 56px}
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .hero-panel{min-height:0}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .systems-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid,.packages-grid,.about-grid,.contact-grid{grid-template-columns:1fr}
  .why-copy{position:static}
  .section-head{grid-template-columns:1fr;gap:12px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:38px}
  .footer-brand{grid-column:1/-1}
}

/* MOBILE — same design language, exact centered logo */
@media (max-width:700px){
  .container{width:min(100% - 28px,1160px)}

  .nav-wrap{
    position:relative;
    height:82px;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .brand{
    position:absolute;
    left:50%;top:50%;
    transform:translate(-50%,-50%);
    width:88px;
    margin:0;
  }
  .brand img{
    width:100%;
    height:auto;
    transform:scale(1.35);
    transform-origin:center center;
  }
  .menu-toggle{
    position:absolute;
    right:0;top:50%;
    transform:translateY(-50%);
    display:block;
  }
  .site-nav{
    position:absolute;
    top:64px;
    left:14px;right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:15px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .site-nav.open{display:flex}
  .site-nav a{padding:9px 7px}
  .nav-cta{text-align:center;margin-top:3px}

  .hero{padding:50px 0 46px}
  h1{font-size:44px}
  .hero-lead{font-size:16px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .hero-proof{grid-template-columns:1fr;gap:14px}
  .hero-proof div{padding-bottom:12px;border-bottom:1px solid rgba(0,0,0,.08)}
  .hero-panel{padding:23px;border-radius:23px}
  .mini-cta{flex-direction:column;align-items:flex-start}

  .trust-inner{align-items:flex-start;flex-direction:column;gap:9px}
  .trust-list{gap:10px 16px}

  .section{padding:64px 0}
  .service-grid,.systems-grid,.process-grid,.portfolio-grid{grid-template-columns:1fr}
  .service-card{min-height:0}
  .field-row{grid-template-columns:1fr}
  .contact-form{padding:20px;border-radius:20px}
  .domain-search{grid-template-columns:1fr}
  .about-badge{min-height:250px}
  .about-badge strong{font-size:56px}

  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand{grid-column:auto}
  .footer-brand img{
    width:104px;
    margin-inline:auto;
    transform:scale(1.15);
    transform-origin:center center;
  }
  .footer-brand p{margin-inline:auto}
  .footer-grid>div:not(.footer-brand){align-items:center}
  .footer-bottom{flex-direction:column;align-items:center;text-align:center}

  .floating-whatsapp{
    right:14px;bottom:14px;
    width:54px;height:54px;
    min-height:54px;
    padding:0;
    justify-content:center;
  }
  .floating-whatsapp span:last-child{display:none}
  .scroll-top{
    right:14px;
    bottom:80px;
    width:54px;height:54px;
  }
}

/* Very small phones */
@media (max-width:390px){
  h1{font-size:39px}
  .brand{width:82px}
  .container{width:min(100% - 24px,1160px)}
}


/* FINAL X-LOGO SIZE OVERRIDES
   Same X-LOGO.png on desktop, laptop, tablet and mobile.
   The transform enlarges the visible artwork because the transparent PNG contains internal spacing. */
.brand{
  overflow:visible !important;
}
.brand img{
  width:100% !important;
  max-width:none !important;
  height:auto !important;
  transform:scale(1.35) !important;
  transform-origin:center center !important;
}

@media (min-width:1025px){
  .nav-wrap{height:92px !important;}
  .brand{width:120px !important;}
}

@media (max-width:1024px) and (min-width:701px){
  .nav-wrap{height:86px !important;}
  .brand{width:110px !important;}
  .brand img{transform:scale(1.32) !important;}
}

@media (max-width:700px){
  .nav-wrap{
    height:82px !important;
    position:relative !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
  }
  .brand{
    width:88px !important;
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    transform:translate(-50%,-50%) !important;
    margin:0 !important;
  }
  .brand img{
    width:100% !important;
    transform:scale(1.35) !important;
    transform-origin:center center !important;
  }
}

@media (max-width:390px){
  .brand{width:82px !important;}
}

.footer-brand img{
  width:120px !important;
  transform:scale(1.18) !important;
}
@media (max-width:700px){
  .footer-brand img{
    width:104px !important;
    transform:scale(1.15) !important;
    transform-origin:center center !important;
    margin-inline:auto !important;
  }
}
