*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111827;
  line-height:1.55;
}

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

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

:root{
  --text:#111827;
  --muted:#6b7280;
  --muted-2:#4b5563;
  --line:#e7eaf0;
  --soft:#f7f8fa;
  --soft-2:#fbfbfc;
  --white:#ffffff;
  --black:#0f172a;
  --shadow:0 10px 28px rgba(15,23,42,.05);
  --radius:18px;
  --radius-lg:24px;

  --line-blue:#dbeafe;
  --line-cream:#f7e6c7;
  --line-green:#d8f0df;
  --line-pink:#f6dce9;
  --line-lav:#e8e2ff;

  --soft-blue:#f4f8ff;
  --soft-cream:#fffaf2;
  --soft-green:#f3fbf5;
  --soft-pink:#fff7fa;
  --soft-lav:#f8f5ff;

  --shadow-sm:0 8px 22px rgba(15,23,42,.04);
  --shadow-md:0 16px 36px rgba(15,23,42,.05);

  --container:1140px;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

section{
  padding:54px 0;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--muted-2);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-title{
  font-size:clamp(28px,4vw,42px);
  line-height:1.05;
  letter-spacing:-0.04em;
  color:var(--text);
  font-weight:800;
  margin-bottom:10px;
}

.section-desc{
  max-width:640px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 17px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:13px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  transition:.2s ease;
}

.btn-primary{
  background:#111827;
  color:#fff;
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-outline{
  background:#fff;
  color:#111827;
  border:1px solid var(--line);
}

.btn-outline:hover{
  background:var(--soft);
}

/* =========================
   CONTACT HERO
========================= */
.contact-hero{
  padding:54px 0 28px;
  border-bottom:1px solid var(--line);
  background:#fff;
}

.hero-wrap{
  max-width:860px;
  margin:0 auto;
  text-align:center;
}

.hero-wrap .section-tag{
  justify-content:center;
}

.hero-wrap h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1;
  letter-spacing:-0.05em;
  font-weight:800;
  color:var(--text);
  margin-bottom:12px;
}

.hero-wrap p{
  max-width:640px;
  margin:0 auto 18px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.hero-actions{
  display:flex;

  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   OFFICE CARDS
========================= */
.office-strip{
  padding-top:10px;
}

.office-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:start;
}

.office-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.office-card h3{
  font-size:24px;
  line-height:1.1;
  margin-bottom:18px;
  color:var(--text);
  font-weight:700;
  letter-spacing:-0.02em;
}

.office-list{
  display:grid;
  gap:16px;
}

.office-item{
  display:flex;
  gap:11px;
  align-items:flex-start;
  color:var(--muted-2);
  font-size:14px;
  line-height:1.65;
}

.office-item i{
  width:18px;
  margin-top:3px;
  color:#9ca3af;
  flex-shrink:0;
}

.office-map-link{
  display:inline-block;
  margin-top:18px;
  font-size:14px;
  color:#111827;
  font-weight:600;
  border-bottom:1px solid #111827;
  padding-bottom:2px;
}

/* =========================
   CONTACT BLOCK
========================= */
.contact-block{
  background:#f7f7f8;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-panel{
  background:#f7f7f8;
  border-radius:28px;
  padding:34px 28px;
}

.contact-panel-head{
  text-align:center;
  max-width:700px;
  margin:0 auto 28px;
}

.contact-panel-head h2{
  font-size:clamp(28px,4vw,42px);
  line-height:1.08;
  letter-spacing:-0.04em;
  color:var(--text);
  font-weight:800;
  margin-bottom:10px;
}

.contact-panel-head p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
}

.contact-card h3{
  font-size:18px;
  color:var(--text);
  font-weight:700;
  margin-bottom:16px;
  letter-spacing:-0.02em;
}

/* FORM */
.contact-form{
  display:grid;
  gap:12px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field{
  display:grid;
  gap:7px;
}

.field label{
  font-size:12.5px;
  font-weight:600;
  color:#374151;
}

.field label span{
  color:#9ca3af;
  font-weight:500;
}

.input-wrap{
  position:relative;
}

.input-wrap i{
  position:absolute;
  left:13px;
  top:50%;
  transform:translateY(-50%);
  color:#9ca3af;
  font-size:13px;
  pointer-events:none;
}

.input-wrap.textarea i{
  top:16px;
  transform:none;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
  font-family:inherit;
  font-size:13.5px;
  color:var(--text);
  outline:none;
  transition:.2s ease;
}

.contact-form input,
.contact-form select{
  height:44px;
  padding:0 14px 0 40px;
}

.contact-form textarea{
  min-height:120px;
  resize:vertical;
  padding:14px 14px 14px 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:#cfd5dd;
  box-shadow:0 0 0 4px rgba(15,23,42,.03);
}

.recaptcha-wrap{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:12px;
}

.submit-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.submit-note{
  max-width:320px;
  font-size:12.5px;
  color:var(--muted);
  line-height:1.55;
}

/* DETAILS */
.details-desc{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:16px;
  max-width:520px;
}

.details-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}

.detail-box{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.detail-icon{
  width:36px;
  height:36px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:#111827;
  color:#fff;
  font-size:13px;
  flex-shrink:0;
}

.detail-box strong{
  display:block;
  font-size:14px;
  color:var(--text);
  margin-bottom:3px;
}

.detail-box span,
.detail-box a{
  display:block;
  font-size:12.8px;
  color:var(--muted);
  line-height:1.55;
}

.social-row{
  padding-top:16px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.social-row strong{
  font-size:13px;
  color:var(--text);
}

.social-icons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.social-icons a{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  background:#fff;
  color:#111827;
  font-size:13px;
  transition:.2s ease;
}

.social-icons a:hover{
  background:#111827;
  border-color:#111827;
  color:#fff;
}

/* =========================
   FAQ + IMAGE
========================= */
.faq-section{
  background:#f7f7f8;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.faq-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 26px;
}

.faq-head h2{
  font-size:clamp(28px,4vw,40px);
  line-height:1.08;
  letter-spacing:-0.04em;
  font-weight:800;
  color:var(--text);
  margin-bottom:10px;
}

.faq-head p{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.faq-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:start;
}

.faq-list{
  display:grid;
  gap:10px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:left;
  padding:15px 16px;
  cursor:pointer;
  font-family:inherit;
}

.faq-question span{
  font-size:13.5px;
  font-weight:600;
  color:var(--text);
  line-height:1.5;
}

.faq-question i{
  font-size:12px;
  color:#6b7280;
  flex-shrink:0;
  transition:.2s ease;
}

.faq-answer{
  display:none;
  padding:0 16px 15px;
  font-size:12.8px;
  color:var(--muted);
  line-height:1.65;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

.faq-image-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  min-height:100%;
}

.faq-image{
  min-height:430px;
  background:
    linear-gradient(to top, rgba(15,23,42,.04), rgba(15,23,42,.01)),
    url('images/contact-support.jpg') center/cover no-repeat;
  filter:grayscale(100%);
}

/* =========================
   GALLERY
========================= */
.gallery-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#f2f4f7;
  min-height:170px;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  transition:.35s ease;
}

.gallery-item:hover img{
  transform:scale(1.03);
}

.gallery-item:nth-child(1){ grid-column:span 4; min-height:250px; }
.gallery-item:nth-child(2){ grid-column:span 4; min-height:250px; }
.gallery-item:nth-child(3){ grid-column:span 4; min-height:250px; }
.gallery-item:nth-child(4){ grid-column:span 3; }
.gallery-item:nth-child(5){ grid-column:span 3; }
.gallery-item:nth-child(6){ grid-column:span 3; }
.gallery-item:nth-child(7){ grid-column:span 3; }
.gallery-item:nth-child(8){ grid-column:span 4; min-height:220px; }
.gallery-item:nth-child(9){ grid-column:span 4; min-height:220px; }
.gallery-item:nth-child(10){ grid-column:span 4; min-height:220px; }

/* =========================
   MAP
========================= */
.map-wrap{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}

.map-head{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  background:#fff;
}

.map-head h3{
  font-size:18px;
  color:var(--text);
  font-weight:700;
  margin-bottom:4px;
}

.map-head p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

.map-embed iframe{
  width:100%;
  height:420px;
  border:0;
  filter:grayscale(100%);
  display:block;
}

/* =========================
   CTA
========================= */
.cta-section{
  padding:52px 0 68px;
}

.cta-box{
  background:#111827;
  color:#fff;
  border-radius:22px;
  padding:26px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.cta-copy{
  max-width:670px;
}

.cta-copy h2{
  font-size:clamp(24px,3.5vw,36px);
  line-height:1.08;
  letter-spacing:-0.04em;
  font-weight:800;
  margin-bottom:8px;
}

.cta-copy p{
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  line-height:1.65;
}

.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cta-actions .btn-primary{
  background:#fff;
  color:#111827;
}

.cta-actions .btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:#fff;
}

.cta-actions .btn-outline:hover{
  background:rgba(255,255,255,.06);
}

/* =========================
   SERVICES HERO
========================= */
.services-hero-v2{
  padding:56px 0 34px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.04), transparent 22%),
    radial-gradient(circle at bottom right, rgba(251,191,36,.04), transparent 20%),
    #fff;
}

.services-hero-v2-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.services-hero-copy h1{
  font-size:clamp(34px,5vw,50px);
  line-height:1.2;
  letter-spacing:-0.05em;
  font-weight:500;
  color:#155a84;
  margin-bottom:14px;
  max-width:555px;
}

.services-hero-copy p{
  font-size:14px;
  color:var(--muted);
  max-width:540px;
  line-height:1.7;
  margin-bottom:18px;
}

.services-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.services-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  max-width:560px;
}

.services-hero-tags span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:600;
  color:var(--muted-2);
}

.services-hero-tags i{
  font-size:11px;
  color:#667085;
}

.services-hero-stack{
  display:grid;
  gap:12px;
}

.stack-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.stack-card{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  padding:16px;
  box-shadow:0 6px 18px rgba(15,23,42,.03);
}

.stack-card-main{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:linear-gradient(180deg,#fcfdff 0%, #f9fbff 100%);
}

.stack-card-blue{
  background:var(--soft-blue);
  border-color:var(--line-blue);
}

.stack-card-cream{
  background:var(--soft-cream);
  border-color:var(--line-cream);
}

.stack-card-light{
  background:#fcfcfd;
}

.stack-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid rgba(17,24,39,.05);
  color:var(--text);
  flex-shrink:0;
  font-size:16px;
}

.stack-content h3{
  font-size:16px;
  color:var(--text);
  margin-bottom:6px;
  line-height:1.2;
}

.stack-content p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

.stack-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.stack-pills span{
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:11.5px;
  font-weight:600;
  color:var(--muted-2);
}

.stack-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.stack-mini-item{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:12px;
}

.stack-mini-item strong{
  display:block;
  font-size:13px;
  color:var(--text);
  margin-bottom:4px;
  line-height:1.3;
}

.stack-mini-item span{
  display:block;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
}

/* =========================
   SERVICES CARDS
========================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}

.service-card{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.service-card.shared{
  border-color:var(--line-green);
}

.service-card.cabin{
  border-color:var(--line-blue);
}

.service-card.daypass{
  border-color:var(--line-cream);
}

.service-card.virtual{
  border-color:var(--line-pink);
}

.service-top{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:0;
  min-height:100%;
}

.service-media{
  min-height:100%;
  background:var(--soft);
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid var(--line);
  font-size:34px;
  color:var(--text);
}

.service-card.shared .service-media{ background:var(--soft-green); border-right-color:var(--line-green); }
.service-card.cabin .service-media{ background:var(--soft-blue); border-right-color:var(--line-blue); }
.service-card.daypass .service-media{ background:var(--soft-cream); border-right-color:var(--line-cream); }
.service-card.virtual .service-media{ background:var(--soft-pink); border-right-color:var(--line-pink); }

.service-body{
  padding:18px;
}

.service-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.service-head h3{
  font-size:18px;
  line-height:1.2;
  color:var(--text);
  margin-bottom:4px;
}

.service-head p{
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}

.service-badge{
  padding:7px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
  border:1px solid var(--line);
  background:#fff;
  color:#475467;
}

.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 14px;
  margin-top:14px;
}

.service-list li{
  list-style:none;
  display:flex;
  gap:9px;
  align-items:flex-start;
  font-size:12.8px;
  color:#344054;
  line-height:1.5;
}

.service-list li i{
  margin-top:3px;
  color:#111827;
  font-size:11px;
}

/* =========================
   FEATURE STRIP
========================= */
.feature-strip{
  background:#fcfcfd;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.feature-strip-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.feature-pill{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px;
  background:#fff;
}

.feature-pill i{
  width:32px;
  height:32px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--soft);
  font-size:12px;
  color:var(--text);
  flex-shrink:0;
}

.feature-pill h4{
  font-size:13.5px;
  color:var(--text);
  margin-bottom:4px;
}

.feature-pill p{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.5;
}

/* =========================
   HOW IT WORKS
========================= */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}

.step-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.step-no{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--soft);
  border:1px solid var(--line);
  font-size:13px;
  font-weight:800;
  color:var(--text);
  margin-bottom:12px;
}

.step-card h3{
  font-size:15px;
  color:var(--text);
  margin-bottom:6px;
}

.step-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   SERVICES FAQ CARDS
========================= */
.faq-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.faq-card h4{
  font-size:14px;
  color:var(--text);
  margin-bottom:7px;
}

.faq-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .office-grid,
  .contact-grid,
  .faq-grid,
  .services-grid,
  .services-hero-v2-grid{
    grid-template-columns:1fr;
  }

  .feature-strip-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-item:nth-child(n){
    grid-column:span 6;
  }
}

@media (max-width:980px){
  .services-hero-v2-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
}

@media (max-width:768px){
  section{
    padding:42px 0;
  }

  .contact-hero{
    padding:42px 0 22px;
  }

  .services-hero-v2{
    padding:42px 0 24px;
  }

  .hero-wrap h1{
    font-size:40px;
  }

  .services-hero-copy h1{
    font-size:40px;
  }

  .office-grid,
  .form-row,
  .details-grid,
  .gallery-grid,
  .stack-row,
  .stack-mini-grid,
  .feature-strip-grid,
  .steps-grid,
  .service-list{
    grid-template-columns:1fr;
  }

  .contact-panel{
    padding:22px 16px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item:nth-child(n){
    grid-column:auto;
    min-height:190px;
  }

  .faq-image{
    min-height:260px;
  }

  .service-top{
    grid-template-columns:1fr;
  }

  .service-media{
    height:92px;
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .map-embed iframe{
    height:320px;
  }

  .cta-box{
    padding:22px 18px;
  }
}







*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111827;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

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

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

:root{
  --text:#111827;
  --muted:#667085;
  --muted-2:#475467;

  --line:#e9edf3;
  --line-blue:#dbeafe;
  --line-cream:#f6e7c8;
  --line-green:#d8f0df;
  --line-pink:#f8dce8;

  --soft:#f8fafc;
  --soft-2:#fcfcfd;
  --soft-blue:#f4f8ff;
  --soft-cream:#fffaf2;
  --soft-green:#f3fbf5;
  --soft-pink:#fff7fa;

  --white:#ffffff;
  --black:#0f172a;
  --shadow:0 10px 28px rgba(15,23,42,.05);
  --shadow-sm:0 6px 18px rgba(15,23,42,.04);
  --shadow-md:0 10px 28px rgba(15,23,42,.05);

  --radius:16px;
  --radius-lg:20px;
  --container:1140px;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

section{
  padding:48px 0;
}

/* ======================
   COMMON
====================== */
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted-2);
  background:#fff;
  margin-bottom:12px;
}

.section-tag i{
  font-size:11px;
  color:#64748b;
}

.section-title{
  font-size:clamp(11px,4.6vw,35px);
  line-height:1.2;
  letter-spacing:-0.04em;
  font-weight:600;
  color:#0e4124;
  margin-bottom:12px;
}

.section-desc{
  font-size:14px;
  color:var(--muted);
  max-width:620px;
  line-height:1.65;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  transition:.2s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:#111827;
  color:#fff;
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-outline{
  background:#fff;
  color:#111827;
  border:1px solid var(--line);
}

.btn-outline:hover{
  background:var(--soft);
}

.btn-dark{
  background:#1f3f35;
  color:#fff;
}

.btn-dark:hover{
  background:#183128;
}

.btn-light{
  background:transparent;
  color:#111827;
  border-color:#d7ddd8;
}

.btn-light:hover{
  background:#ffffff;
}

/* =========================
   HOME HERO
========================= */
.hero{
  padding:90px 0 80px;
}

.hero-container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:18px;
}

.hero h1{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-2px;
  font-weight:700;
  color:#111111;
  max-width:620px;
  margin-bottom:22px;
}

.hero h1 span{
  color:#2f5d50;
}

.hero-text{
  font-size:17px;
  line-height:1.8;
  color:#5f6670;
  max-width:540px;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.hero-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-meta span{
  font-size:13px;
  color:#4b5563;
  padding:9px 14px;
  border:1px solid #e4e7e3;
  border-radius:999px;
  background:#fcfcfa;
}

.hero-image-card{
  border-radius:14px;
  overflow:hidden;
  background:#eceee9;
}

.hero-image-card img{
  width:100%;
  height:620px;
  object-fit:cover;
}

/* =========================
   ABOUT SECTION
========================= */
.about-section{
  padding:56px 0 72px;
  background:#f7f7f4;
}

.about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:42px;
  align-items:center;
  margin-bottom:42px;
}

.about-visual{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:end;
}

.about-img{
  border:1px solid #e6e7e3;
  border-radius:18px;
  overflow:hidden;
  background:transparent;
}

.about-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-img:first-child img{
  height:300px;
}

.about-img:last-child{
  margin-top:34px;
}

.about-img:last-child img{
  height:250px;
}

.about-content{
  max-width:560px;
}

.about-label{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#7b7f78;
  margin-bottom:10px;
}

.about-content h2{
  font-size:42px;
  line-height:1.05;
  letter-spacing:-1.4px;
  font-weight:600;
  color:#111111;
  margin:0 0 16px;
  max-width:560px;
}

.about-content h2 span{
  color:#2f5d50;
}

.about-text{
  font-size:15px;
  line-height:1.8;
  color:#626b74;
  max-width:500px;
  margin-bottom:22px;
}

.about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 20px;
  border-radius:999px;
  background:#1f2937;
  color:#fff;
  font-size:14px;
  font-weight:600;
  transition:.2s ease;
}

.about-btn:hover{
  background:#111827;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  padding-top:22px;
  border-top:1px solid #e7e7e2;
}

.about-feature-card{
  padding-top:8px;
}

.feature-icon{
  width:38px;
  height:38px;
  border:1px solid #e2e5e1;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  color:#2f5d50;
  font-size:16px;
  background:transparent;
}

.about-feature-card h4{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.35;
  color:#111827;
  font-weight:600;
}

.about-feature-card p{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:#6b7280;
  max-width:260px;
}

/* =========================
   AMENITIES SECTION
========================= */
.amenities-section{
  padding:70px 0;
  background:#f7f7f4;
}

.section-head{
  text-align:center;
  max-width:620px;
  margin:0 auto 36px;
}

.section-label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#7b7f78;
  margin-bottom:8px;
  display:block;
}

.section-head h2{
  font-size:36px;
  letter-spacing:-1px;
  margin-bottom:10px;
  font-weight:600;
}

.section-head p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

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

.amenity-card{
  border:1px solid #e4e6e3;
  border-radius:14px;
  padding:18px;
  transition:.2s ease;
}

.amenity-card:hover{
  border-color:#d2d7d1;
}

.amenity-icon{
  width:38px;
  height:38px;
  border:1px solid #e3e6e2;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  color:#2f5d50;
}

.amenity-icon svg{
  width:18px;
  height:18px;
}

.amenity-card h3{
  font-size:15px;
  margin-bottom:6px;
  font-weight:600;
}

.amenity-card p{
  font-size:13px;
  line-height:1.6;
  color:#6b7280;
}

/* =========================
   PROCESS SECTION
========================= */
.process-section{
  padding:54px 0;
  background:#f7f7f4;
}

.process-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:start;
}

.process-content{
  max-width:560px;
}

.process-label{
  display:inline-block;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:8px;
}

.process-content h2{
  font-size:32px;
  line-height:1.12;
  letter-spacing:-0.8px;
  font-weight:600;
  color:#111827;
  margin:0 0 10px;
  max-width:430px;
}

.process-intro{
  font-size:14px;
  line-height:1.7;
  color:#6b7280;
  margin:0 0 24px;
  max-width:430px;
}

.process-timeline{
  display:flex;
  flex-direction:column;
  gap:0;
}

.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  padding:0 0 22px;
}

.timeline-item:last-child{
  padding-bottom:0;
}

.timeline-line{
  position:absolute;
  left:19px;
  top:42px;
  width:1px;
  height:calc(100% - 10px);
  background:#e1e5e0;
}

.timeline-dot{
  position:relative;
  z-index:2;
  width:38px;
  height:38px;
  border:1px solid #dfe4de;
  border-radius:999px;
  background:#f7f7f4;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f5d50;
  font-size:11px;
  font-weight:700;
}

.timeline-content{
  padding-top:3px;
}

.timeline-content h3{
  margin:0 0 6px;
  font-size:17px;
  line-height:1.3;
  color:#111827;
  font-weight:600;
}

.timeline-content p{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:#6b7280;
  max-width:390px;
}

.process-image{
  border:1px solid #e6e7e3;
  border-radius:18px;
  overflow:hidden;
  background:transparent;
}

.process-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

/* =========================
   WHAT WE PROVIDE
========================= */
.provide-section{
  padding:48px 0;
  background:#f7f7f4;
}

.provide-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
}

.provide-image{
  border:1px solid #e6e7e3;
  border-radius:16px;
  overflow:hidden;
  background:transparent;
}

.provide-image img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
}

.provide-content{
  max-width:560px;
}

.provide-label{
  display:inline-block;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:8px;
}

.provide-content h2{
  font-size:30px;
  line-height:1.12;
  letter-spacing:-0.7px;
  font-weight:600;
  color:#111827;
  margin:0 0 10px;
  max-width:470px;
}

.provide-text{
  font-size:14px;
  line-height:1.7;
  color:#6b7280;
  margin:0 0 18px;
  max-width:470px;
}

.provide-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}

.provide-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid #e6e7e3;
  border-radius:14px;
  padding:14px 16px;
  color:inherit;
  transition:.2s ease;
  background:transparent;
}

.provide-row:hover{
  border-color:#d7dbd6;
  transform:translateY(-1px);
}

.provide-row-left{
  flex:1;
  min-width:0;
}

.provide-row-left h3{
  font-size:16px;
  line-height:1.3;
  font-weight:600;
  color:#111827;
  margin:0 0 5px;
}

.provide-row-left p{
  font-size:13px;
  line-height:1.6;
  color:#6b7280;
  margin:0;
}

.provide-row-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.provide-price{
  font-size:12px;
  font-weight:600;
  color:#2f5d50;
  white-space:nowrap;
}

.provide-arrow{
  width:30px;
  height:30px;
  border:1px solid #e3e6e2;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:#111827;
}

.provide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:999px;
  background:#1f2937;
  color:#fff;
  font-size:13px;
  font-weight:600;
  transition:.2s ease;
}

.provide-btn:hover{
  background:#111827;
}

/* =========================
   FAQ SECTION - FINAL ACTIVE VERSION
========================= */
.faq-section{
  padding:56px 0;
  background:#f7f7f4;
}

.faq-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:52px;
  align-items:start;
}

.faq-side{
  max-width:360px;
}

.faq-label{
  display:inline-block;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:10px;
}

.faq-side h2{
  font-size:42px;
  line-height:1.08;
  letter-spacing:-1.4px;
  font-weight:600;
  color:#111827;
  margin:0 0 16px;
}

.faq-side-text{
  font-size:14px;
  line-height:1.8;
  color:#6b7280;
  margin:0 0 24px;
}

.faq-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:#2f5d50;
}

.faq-link span{
  font-size:14px;
}

.faq-list{
  width:100%;
}

.faq-item{
  border-bottom:1px solid #dcded9;
  padding:0;
  border-radius:0;
  overflow:visible;
  background:transparent;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:#111827;
}

.faq-icon{
  flex-shrink:0;
  font-size:20px;
  line-height:1;
  color:#111827;
}

.faq-answer{
  display:none;
  padding:0 28px 16px 0;
}

.faq-answer p{
  font-size:14px;
  line-height:1.8;
  color:#6b7280;
  margin:0;
  max-width:720px;
}

.faq-right{
  max-width:380px;
}

.faq-text{
  font-size:13px;
  color:#6b7280;
  line-height:1.6;
  margin-bottom:18px;
}

.faq-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:18px;
}

.contact-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid #e6e7e3;
  padding:10px 12px;
  border-radius:10px;
}

.contact-item span{
  font-size:16px;
}

.contact-item p{
  font-size:13px;
  color:#6b7280;
  margin:0;
}

.contact-item strong{
  color:#111827;
}

.faq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#1f2937;
  color:#fff;
  font-size:13px;
  font-weight:600;
}

/* =========================
   SUBSCRIBE
========================= */
.subscribe-section{
  background:#ffffff;
  border-top:1px solid #e6e7e3;
  padding:40px 0;
}

.subscribe-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.subscribe-wrap h2{
  font-size:26px;
  font-weight:600;
}

.subscribe-form{
  display:flex;
  gap:10px;
}

.subscribe-form input{
  height:42px;
  padding:0 14px;
  border:1px solid #e6e7e3;
  border-radius:8px;
  font-size:14px;
}

.subscribe-form button{
  height:42px;
  padding:0 18px;
  border:none;
  border-radius:8px;
  background:#7c6cff;
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

/* =========================
   SCROLL REVEAL
========================= */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
  will-change:opacity, transform;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   ABOUT PAGE
========================= */
.about-hero{
  padding:48px 0 30px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.045), transparent 26%),
    radial-gradient(circle at bottom right, rgba(251,191,36,.05), transparent 22%),
    #fff;
}

.about-hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:22px;
  align-items:center;
}

.hero-copy h1{
  font-size:clamp(30px,4.7vw,52px);
  line-height:.98;
  letter-spacing:-0.05em;
  font-weight:800;
  color:var(--text);
  margin-bottom:12px;
  max-width:520px;
}

.hero-copy p{
  font-size:14px;
  color:#4b5563;
  max-width:550px;
  margin-bottom:16px;
  line-height:1.65;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  max-width:610px;
}

.hero-point{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 11px;
  background:#fff;
}

.hero-point:nth-child(1){
  background:var(--soft-blue);
  border-color:var(--line-blue);
}

.hero-point:nth-child(2){
  background:var(--soft-cream);
  border-color:var(--line-cream);
}

.hero-point:nth-child(3){
  background:var(--soft-green);
  border-color:var(--line-green);
}

.hero-point:nth-child(4){
  background:var(--soft-pink);
  border-color:var(--line-pink);
}

.hero-point i{
  width:28px;
  height:28px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.82);
  color:var(--text);
  font-size:12px;
  flex-shrink:0;
  margin-top:1px;
  border:1px solid rgba(17,24,39,.04);
}

.hero-point span{
  font-size:12.6px;
  font-weight:500;
  color:#344054;
  line-height:1.45;
}

.hero-card{
  position:relative;
  min-height:300px;
}

.hero-main-image{
  min-height:300px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fcfdff 0%, #f8fafc 100%);
  position:relative;
  overflow:hidden;
}

.hero-pattern{
  position:absolute;
  border-radius:999px;
  filter:blur(1px);
  opacity:.9;
}

.hero-pattern-1{
  width:150px;
  height:150px;
  background:var(--soft-blue);
  top:26px;
  left:28px;
}

.hero-pattern-2{
  width:110px;
  height:110px;
  background:var(--soft-cream);
  right:54px;
  top:76px;
}

.hero-pattern-3{
  width:130px;
  height:130px;
  background:var(--soft-pink);
  bottom:24px;
  left:110px;
}

.hero-badge{
position: absolute;
  top: 108px;
  right: 121px;
  width: 182px;
  background: #ffffffed;
  border: 1px solid #fff;
  border-radius: 9px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.hero-badge small{
  display:block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:6px;
}

.hero-badge h3{
  font-size:15px;
  line-height:1.2;
  color:var(--text);
  margin-bottom:6px;
}

.hero-badge p{
  font-size:12.4px;
  color:var(--muted);
  line-height:1.5;
}

.hero-floating{
  position:absolute;
  left:14px;
  bottom:14px;
  width:198px;
  background:#fff;
  border:1px solid #edf1f5;
  border-radius:16px;
  padding:13px;
  box-shadow:var(--shadow-sm);
}

.hero-floating .float-top{
  display:flex;
  gap:9px;
  align-items:flex-start;
  margin-bottom:7px;
}

.hero-floating .float-top i{
  width:28px;
  height:28px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:var(--soft-blue);
  color:var(--text);
  font-size:12px;
  flex-shrink:0;
}

.hero-floating strong{
  display:block;
  font-size:14px;
  color:var(--text);
  margin-bottom:2px;
}

.hero-floating p{
  font-size:12.2px;
  color:var(--muted);
  line-height:1.45;
}

.story-wrap{
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:22px;
  align-items:start;
}

.story-visual{
  position:sticky;
  top:100px;
  height:fit-content;
}

.story-frame{
  height:380px;
  border-radius:22px;
  border:1px solid var(--line);
  background:
    linear-gradient(to top, rgba(15,23,42,.04), rgba(15,23,42,.015)),
    url('images/coworking-hero.jpg') center/cover no-repeat;
  overflow:hidden;
}

.mini-experience{
  position:absolute;
  left:14px;
  bottom:14px;
  width:160px;
  background:rgba(255,255,255,.97);
  border:1px solid #edf1f5;
  border-radius:16px;
  padding:13px;
  box-shadow:var(--shadow-sm);
}

.mini-experience h4{
  font-size:28px;
  line-height:1;
  color:var(--text);
  margin-bottom:6px;
  font-weight:800;
}

.mini-experience p{
  font-size:12.3px;
  color:var(--muted);
  line-height:1.45;
}

.story-content p{
  font-size:13.8px;
  color:#4b5563;
  margin-bottom:13px;
}

.story-highlights{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.story-highlight{
  border:1px solid var(--line);
  border-radius:15px;
  padding:14px;
  background:#fff;
}

.story-highlight i{
  width:30px;
  height:30px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:var(--text);
  font-size:12px;
  margin-bottom:9px;
}

.story-highlight h4{
  font-size:13.5px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.story-highlight p{
  font-size:12.6px;
  color:var(--muted);
  margin:0;
  line-height:1.5;
}

.stats{
  padding-top:8px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.stat-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px 14px;
  background:#fff;
}

.stat-card .num{
  font-size:21px;
  line-height:1;
  font-weight:600;
  letter-spacing:-0.04em;
  color:#123405;
  margin-bottom:7px;
}

.stat-card .label{
  font-size:12.8px;
  color:var(--muted);
  line-height:1.45;
}

.why-section{
  background:#fcfcfd;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.why-grid{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:20px;
  align-items:start;
}

.why-left{
  padding-right:8px;
}

.why-left .section-desc{
  margin-bottom:16px;
}

.why-cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.why-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background:#fff;
  min-height:150px;
}

.why-card i{
  width:30px;
  height:30px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:var(--text);
  font-size:12px;
  margin-bottom:10px;
}

.why-card h3{
  font-size:14px;
  color:var(--text);
  margin-bottom:7px;
  line-height:1.3;
}

.why-card p{
  font-size:12.8px;
  color:var(--muted);
  line-height:1.55;
}

.workspace-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}

.workspace-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
}

.workspace-media{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--soft-2);
  border-bottom:1px solid var(--line);
  color:var(--text);
  font-size:24px;
}

.workspace-body{
  padding:16px;
}

.workspace-body h3{
  font-size:15px;
  color:var(--text);
  margin-bottom:7px;
}

.workspace-body p{
  font-size:12.8px;
  color:var(--muted);
  margin-bottom:12px;
  line-height:1.55;
}

.workspace-list{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.workspace-list span{
  padding:6px 9px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:11.5px;
  font-weight:600;
  color:var(--muted-2);
  background:#fff;
}

.facility-top{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.facility-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.facility-card{
  border:0.2px solid #a6abb8;
  border-radius:16px;
  padding:16px;
  background:#fff;
}

.facility-card i{
  width:32px;
  height:32px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:#0041cb;
  font-size:12px;
  margin-bottom:10px;
}

.facility-card h4{
  font-size:13.5px;
  color:var(--text);
  margin-bottom:5px;
  line-height:1.35;
}

.facility-card p{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.55;
}

.location-section{
  background:#fcfcfd;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.location-card,
.location-panel{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.address-box{
  margin-top:14px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--soft-2);
}

.address-box strong{
  display:block;
  font-size:13.5px;
  color:var(--text);
  margin-bottom:5px;
}

.address-box p{
  font-size:12.8px;
  color:var(--muted);
  line-height:1.55;
}

.location-list{
  margin-top:14px;
  display:grid;
  gap:9px;
}

.location-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px;
  background:#fff;
}

.location-item i{
  width:28px;
  height:28px;
  border-radius:9px;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:var(--text);
  font-size:12px;
  flex-shrink:0;
  margin-top:1px;
}

.location-item h4{
  font-size:13.5px;
  color:var(--text);
  margin-bottom:4px;
  line-height:1.35;
}

.location-item p{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.5;
}

.cta-section{
  padding:50px 0 62px;
}

.cta-box{
  background:#111827;
  color:#fff;
  border-radius:20px;
  padding:24px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.cta-copy{
  max-width:650px;
}

.cta-copy h2{
  font-size:clamp(24px,3.5vw,34px);
  line-height:1.08;
  letter-spacing:-0.04em;
  margin-bottom:8px;
  font-weight:800;
}

.cta-copy p{
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cta-actions .btn-primary{
  background:#fff;
  color:#111827;
}

.cta-actions .btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.cta-actions .btn-outline:hover{
  background:rgba(255,255,255,.06);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .about-hero-grid,
  .story-wrap,
  .why-grid,
  .location-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .facility-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .workspace-grid{
    grid-template-columns:1fr 1fr;
  }
}

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

@media (max-width:992px){
  .about-grid,
  .process-grid,
  .provide-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .about-content,
  .process-content,
  .provide-content{
    max-width:100%;
  }

  .about-content h2,
  .process-content h2,
  .process-intro,
  .provide-content h2,
  .provide-text{
    max-width:100%;
  }

  .about-features{
    grid-template-columns:1fr;
    gap:16px;
  }

  .about-img:first-child img{
    height:260px;
  }

  .about-img:last-child img{
    height:220px;
  }

  .process-image img,
  .provide-image img{
    height:320px;
  }
}

@media (max-width:900px){
  .faq-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .faq-side,
  .faq-right{
    max-width:100%;
  }

  .faq-side h2{
    font-size:34px;
    letter-spacing:-1px;
  }
}

@media (max-width:768px){
  section{
    padding:40px 0;
  }

  .about-hero{
    padding:42px 0 26px;
  }

  .hero-copy h1{
    font-size:38px;
    max-width:100%;
  }

  .hero-points,
  .story-highlights,
  .why-cards,
  .workspace-grid,
  .facility-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .hero-main-image{
    min-height:220px;
  }

  .hero-card{
    min-height:auto;
  }

  .hero-badge,
  .hero-floating{
    position:relative;
    inset:auto;
    width:100%;
    margin-top:10px;
  }

  .story-frame{
    min-height:240px;
  }

  .mini-experience{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:10px;
  }

  .location-card,
  .location-panel{
    padding:16px;
  }

  .cta-box{
    padding:22px 16px;
  }

  .about-visual{
    display:none;
  }

  .subscribe-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .subscribe-form{
    width:100%;
    flex-direction:column;
  }

  .subscribe-form input,
  .subscribe-form button{
    width:100%;
  }
}

@media (max-width:600px){
  .amenities-grid{
    grid-template-columns:1fr;
  }

  .section-head h2{
    font-size:28px;
  }

  .amenities-section{
    padding:50px 0;
  }
}

@media (max-width:576px){
  .about-section,
  .process-section,
  .faq-section{
    padding:42px 0;
  }

  .about-grid{
    margin-bottom:28px;
  }

  .about-visual{
    grid-template-columns:1fr;
    gap:12px;
  }

  .about-img:last-child{
    margin-top:0;
  }

  .about-img:first-child img,
  .about-img:last-child img{
    height:220px;
  }

  .about-content h2,
  .faq-side h2{
    font-size:28px;
    line-height:1.12;
    letter-spacing:-1px;
  }

  .about-text,
  .faq-side-text{
    font-size:13px;
    line-height:1.7;
  }

  .about-btn,
  .provide-btn{
    width:100%;
  }

  .process-content h2{
    font-size:26px;
    line-height:1.15;
  }

  .process-intro{
    font-size:13px;
    line-height:1.65;
    margin-bottom:20px;
  }

  .timeline-item{
    grid-template-columns:46px 1fr;
    gap:12px;
    padding-bottom:18px;
  }

  .timeline-line{
    left:18px;
    top:38px;
  }

  .timeline-dot{
    width:36px;
    height:36px;
    font-size:10px;
  }

  .timeline-content h3{
    font-size:15px;
  }

  .timeline-content p{
    font-size:12px;
    line-height:1.65;
  }

  .process-image,
  .provide-image{
    border-radius:14px;
  }

  .process-image img,
  .provide-image img{
    height:220px;
  }

  .provide-content h2{
    font-size:25px;
    line-height:1.15;
  }

  .provide-text{
    font-size:13px;
    line-height:1.65;
  }

  .provide-row{
    padding:12px 14px;
    border-radius:12px;
    align-items:flex-start;
    flex-direction:column;
  }

  .provide-row-right{
    width:100%;
    justify-content:space-between;
  }

  .provide-row-left h3{
    font-size:15px;
  }

  .provide-row-left p{
    font-size:12px;
  }

  .reveal{
    transform:translateY(20px);
    transition:opacity .55s ease, transform .55s ease;
  }

  .faq-question{
    font-size:14px;
    padding:15px 0;
  }

  .faq-icon{
    font-size:18px;
  }

  .faq-answer{
    padding:0 18px 14px 0;
  }

  .faq-answer p{
    font-size:13px;
    line-height:1.7;
  }
}
