
:root {
  --teal: #0B8FAC;
  --mint: #7BC1B7;
  --teal-dark: #086d85;
  --teal-light: #e0f4f7;
  --mint-light: #d4eeeb;
  --mint-pale: #f0faf9;
  --white: #ffffff;
  --text: #1a3038;
  --text2: #4a7a85;
  --text3: #7aacb5;
  --bg: #f5fbfc;
  --card-bg: rgba(255,255,255,0.7);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  --shadow: 0 8px 40px rgba(11,143,172,0.10);
  --shadow-sm: 0 4px 20px rgba(11,143,172,0.08);
    --bg-color: #0b0d13;
  --text-color: #ffffff;
  --accent: #3169af;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mint-pale); }
::-webkit-scrollbar-thumb { background: var(--mint); border-radius: 3px; }

/* ─── NAV ─── */
.navbar {
  padding: 0rem 6rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  height: 110px;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease all;
    background-color: black;
}


.navbar.toggle-class {
    background: var(--bg-color);
    height: 80px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
}

.navbar .navbar-list {
        display: flex;
    }

.navbar-list li {
    list-style: none;
}

.navbar-list li a {
    color: var(--text-color);
    font-size: 18px;
    transition: 0.3s ease all;
    padding: 0 10px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.navbar-list li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 2px;
    border-radius: 25px;
    background: #ffffff;
    opacity: 0;
    transition: 0.3s ease all;
}
.navbar-list li a:hover{
    color: var(--accent);
}
.navbar-list li a.active:before,
.navbar-list li a:hover:before{
    opacity: 1;
}
.navbar.toggle-class .navbar-list li a {
    color: var(--text-color);
}
.navbar.toggle-class .navbar-list li a:before{
    background: #000000;
}

.menu-btn,
.sidebar-menu{
    display: none;
}

.nav_logo {
  height: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 5rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a.active {
  color: var(--accent);
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
}


.nav-links a:hover {
  color: var(--accent);
}



/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #edf8f9 40%, #d4eeeb 100%);
}

/* floating orbs */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatOrb var(--dur, 8s) ease-in-out infinite alternate;
}
.orb1 { width:400px; height:400px; background: radial-gradient(circle, rgba(123,193,183,0.18), transparent 70%); top:-80px; right:-80px; --dur:9s; }
.orb2 { width:280px; height:280px; background: radial-gradient(circle, rgba(11,143,172,0.1), transparent 70%); bottom:80px; left:-60px; --dur:11s; }
.orb3 { width:180px; height:180px; background: radial-gradient(circle, rgba(123,193,183,0.22), transparent 70%); top:40%; right:25%; --dur:7s; }
@keyframes floatOrb { from{transform:translateY(0) scale(1)} to{transform:translateY(-30px) scale(1.05)} }

.hero-content img {
  display: block;
  width: 80%;
  height: auto;
  /* margin-top: 40px; */
  /* animation: floatOrb 8s ease-in-out infinite alternate; */
}

/* breathing ring */
.breathe-ring {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 360px; height: 360px;
}
.breathe-ring .ring {
  position: absolute; border-radius: 50%; border: 1.5px solid;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ring1 { width:360px; height:360px; border-color: rgba(123,193,183,0.15); animation: breathe 5s ease-in-out infinite; }
.ring2 { width:280px; height:280px; border-color: rgba(11,143,172,0.18); animation: breathe 5s 0.6s ease-in-out infinite; }
.ring3 { width:200px; height:200px; border-color: rgba(123,193,183,0.25); animation: breathe 5s 1.2s ease-in-out infinite; }
.ring4 { width:130px; height:130px; border-color: rgba(11,143,172,0.3); animation: breathe 5s 1.8s ease-in-out infinite; }
.ring-core {
  position: absolute; width:80px; height:80px; border-radius:50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  top:50%; left:50%; transform:translate(-50%,-50%);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; animation: breathe 5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(11,143,172,0.35);
}
@keyframes breathe {
  0%,100%{transform:translate(-50%,-50%) scale(1); opacity:0.7}
  50%{transform:translate(-50%,-50%) scale(1.12); opacity:1}
}
.breathe-label {
  position:absolute; bottom:-40px; left:50%; transform:translateX(-50%);
  font-size:12px; color:var(--text3); letter-spacing:2px; font-weight:600;
  text-transform:uppercase; white-space:nowrap;
}

.hero-content { max-width: 600px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,143,172,0.08); border: 1px solid rgba(11,143,172,0.2);
  padding: 7px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.tag-dot { width:6px; height:6px; border-radius:50%; background:var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.6)} }

.hero h1 {
  font-family: var(--font-head); font-size: clamp(42px,5.5vw,72px);
  font-weight: 700; line-height: 1.1; color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 18px; color: var(--text2); margin: 22px 0 40px;
  font-weight: 400; line-height: 1.8; max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--mint));
  color: white; padding: 15px 32px; border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 24px rgba(11,143,172,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11,143,172,0.45); }
.btn-outline {
  background: transparent; color: var(--teal); padding: 14px 30px;
  border: 2px solid rgba(11,143,172,0.35); border-radius: 50px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(11,143,172,0.07); border-color: var(--teal); }

.hero-trust { display:flex; gap:24px; margin-top:40px; animation: fadeUp 0.6s 0.4s ease both; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text3); font-weight:600; }
.trust-icon { font-size:16px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ─── WAVE DIVIDER ─── */
.wave-div { line-height:0; margin-top:-2px; }
.wave-div svg { display:block; width:100%; }

/* ─── SECTION BASE ─── */
section { padding: 90px 60px; }
.section-pill {
  display:inline-block; background: linear-gradient(135deg, rgba(11,143,172,0.1), rgba(123,193,183,0.15));
  border: 1px solid rgba(11,143,172,0.15); color: var(--teal);
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-family: var(--font-head); font-size: clamp(30px,4vw,46px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; color: var(--text); }
.section-title em { font-style: italic; color: var(--teal); }
.section-sub { color: var(--text2); font-size: 16px; max-width: 520px; line-height: 1.85; font-weight: 400; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ─── ABOUT ─── */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-card-big {
  background: linear-gradient(135deg, var(--teal), var(--mint));
  border-radius: 28px; padding: 40px; color: white;
  box-shadow: 0 20px 60px rgba(11,143,172,0.28);
}
.about-card-big h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.about-card-big p { font-size: 14px; line-height: 1.8; opacity: 0.9; }
.about-float-card {
  position: absolute; background: white; border-radius: 18px;
  padding: 16px 20px; box-shadow: 0 10px 40px rgba(11,143,172,0.15);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(123,193,183,0.2);
}
.float1 { bottom: -24px; right: -24px; }
.float2 { top: -20px; left: -20px; }
.float-icon { font-size: 24px; }
.float-text { font-size: 13px; font-weight: 700; color: var(--text); }
.float-text span { display:block; font-size:11px; color:var(--text3); font-weight:500; margin-top:2px; }
.about-highlights { display:flex; flex-direction:column; gap:20px; margin-top:32px; }
.highlight-item { display:flex; gap:16px; align-items:flex-start; }
.h-icon { width:44px; height:44px; border-radius:12px; background: linear-gradient(135deg, rgba(11,143,172,0.1), rgba(123,193,183,0.15)); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.h-text h4 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:4px; }
.h-text p { font-size:13px; color:var(--text2); line-height:1.7; }

/* ─── FEATURES ─── */
.features-section { background: linear-gradient(160deg, var(--mint-pale) 0%, #fff 100%); }
.features-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin-top:56px; }
.feature-card {
  background: var(--card-bg); border: 1px solid rgba(123,193,183,0.25); border-radius: 22px;
  padding: 32px 26px; backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  opacity:0; transition: opacity 0.3s;
}
.feature-card:hover { transform:translateY(-6px); box-shadow: 0 20px 50px rgba(11,143,172,0.15); border-color: rgba(11,143,172,0.25); }
.feature-card:hover::before { opacity:1; }
.feature-icon-wrap { width:56px; height:56px; border-radius:16px; background: linear-gradient(135deg, rgba(11,143,172,0.12), rgba(123,193,183,0.18)); display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:18px; }
.feature-card h3 { font-size:16px; font-weight:700; color:var(--text); margin-bottom:8px; }
.feature-card p { font-size:13px; color:var(--text2); line-height:1.75; }
.feature-tag { display:inline-block; background: rgba(11,143,172,0.08); color:var(--teal); padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; margin-top:12px; letter-spacing:0.5px; }

/* ─── HOW IT WORKS ─── */
.how-section { background: white; }
.steps-track { display:grid; grid-template-columns: repeat(4,1fr); gap:0; margin-top:60px; position:relative; }
.steps-track::before { content:''; position:absolute; top:52px; left:12%; right:12%; height:1px; background: linear-gradient(90deg, var(--teal), var(--mint), var(--teal)); z-index:0; }
.step-item { text-align:center; position:relative; z-index:1; padding:0 12px; }
.step-num {
  width:52px; height:52px; border-radius:50%; margin:0 auto 20px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-size:20px; font-weight:700; color:white;
  box-shadow: 0 6px 20px rgba(11,143,172,0.35);
  position:relative;
}
.step-num::after { content:''; position:absolute; inset:-4px; border-radius:50%; border: 2px solid rgba(11,143,172,0.15); }
.step-icon { font-size:28px; margin-bottom:12px; }
.step-item h4 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:6px; }
.step-item p { font-size:13px; color:var(--text2); line-height:1.7; }

/* ─── APP PREVIEW ─── */
.preview-section { background: linear-gradient(160deg, #e8f7f8 0%, #d4eeeb 100%); overflow:hidden; }
.preview-inner { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:center; }
.phone-frame {
  width:220px; height:440px; border-radius:36px;
  background: linear-gradient(170deg, var(--teal), var(--mint));
  padding: 12px; box-shadow: 0 30px 80px rgba(11,143,172,0.3);
  position:relative; margin:0 auto;
}
.phone-screen { width:100%; height:100%; border-radius:26px; background:#f5fbfc; overflow:hidden; display:flex; flex-direction:column; }
.phone-status { padding:10px 16px 0; display:flex; justify-content:space-between; font-size:10px; color:var(--text3); font-weight:600; }
.phone-header { padding:10px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(123,193,183,0.2); }
.phone-header .ph-avatar { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--mint)); display:flex; align-items:center; justify-content:center; font-size:12px; color:white; font-weight:700; }
.phone-header .ph-name { font-size:12px; font-weight:700; color:var(--text); }
.phone-header .ph-status { font-size:10px; color:var(--mint); font-weight:600; }
.ph-chat { padding:12px; flex:1; display:flex; flex-direction:column; gap:8px; overflow:hidden; }
.bubble { padding:8px 12px; border-radius:16px; font-size:10px; line-height:1.5; max-width:75%; }
.bubble.ai { background: linear-gradient(135deg,rgba(11,143,172,0.1),rgba(123,193,183,0.15)); color:var(--text); border-bottom-left-radius:4px; align-self:flex-start; }
.bubble.user { background:linear-gradient(135deg,var(--teal),var(--mint)); color:white; border-bottom-right-radius:4px; align-self:flex-end; }
.mood-row { padding:8px 12px; display:flex; gap:6px; flex-wrap:wrap; }
.mood-chip { background:rgba(11,143,172,0.1); border:1px solid rgba(11,143,172,0.2); color:var(--teal); padding:4px 10px; border-radius:20px; font-size:9px; font-weight:700; }
.phone-nav { padding:8px 12px; display:flex; justify-content:space-around; border-top:1px solid rgba(123,193,183,0.2); }
.pnav-item { display:flex; flex-direction:column; align-items:center; gap:2px; font-size:9px; color:var(--text3); font-weight:600; }
.pnav-item.active { color:var(--teal); }
.pnav-dot { font-size:14px; }

.preview-phones { display:flex; gap:24px; align-items:center; justify-content:center; }
.phone-frame.small { width:180px; height:360px; transform:translateY(20px) scale(0.88); opacity:0.75; }

.preview-text .section-sub { max-width:100%; }
.preview-points { margin-top:28px; display:flex; flex-direction:column; gap:14px; }
.pp-item { display:flex; gap:12px; align-items:center; }
.pp-check { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--mint)); display:flex; align-items:center; justify-content:center; color:white; font-size:13px; flex-shrink:0; }
.pp-item span { font-size:14px; font-weight:600; color:var(--text2); }

/* ─── SAKHA AI ─── */
.sakha-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0a7a96 50%, var(--mint) 100%);
  position:relative; overflow:hidden;
}
.sakha-section::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.sakha-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.sakha-text h2 { font-family:var(--font-head); font-size:clamp(32px,4vw,50px); font-weight:700; color:white; line-height:1.15; margin-bottom:18px; }
.sakha-text h2 em { font-style:italic; opacity:0.85; }
.sakha-text p { color:rgba(255,255,255,0.8); font-size:16px; line-height:1.85; margin-bottom:28px; }
.sakha-feats { display:flex; flex-direction:column; gap:12px; }
.sakha-feat { display:flex; align-items:center; gap:12px; }
.sf-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.5); flex-shrink:0; }
.sakha-feat span { color:rgba(255,255,255,0.85); font-size:14px; font-weight:600; }
.sakha-chat-demo {
  background:rgba(255,255,255,0.12); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.2); border-radius:28px; padding:28px;
}
.chat-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,0.15); }
.chat-avatar { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; font-size:20px; }
.chat-name { font-weight:700; color:white; font-size:15px; }
.chat-status { font-size:12px; color:rgba(255,255,255,0.6); margin-top:2px; }
.chat-pulse { display:inline-block; width:7px; height:7px; border-radius:50%; background:#a8f0c6; margin-right:5px; animation:pulse 1.5s infinite; }
.chat-messages { display:flex; flex-direction:column; gap:12px; }
.chat-msg { max-width:85%; }
.chat-msg.ai .msg-bubble { background:rgba(255,255,255,0.18); color:white; border-radius:18px 18px 18px 4px; padding:12px 16px; font-size:13px; line-height:1.65; }
.chat-msg.user { align-self:flex-end; }
.chat-msg.user .msg-bubble { background:rgba(255,255,255,0.92); color:var(--teal); border-radius:18px 18px 4px 18px; padding:12px 16px; font-size:13px; line-height:1.65; font-weight:600; }
.chat-typing { display:flex; align-items:center; gap:4px; padding:10px 16px; background:rgba(255,255,255,0.12); border-radius:18px; width:fit-content; margin-top:4px; }
.typing-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.5); animation: typingBounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay:0.2s; }
.typing-dot:nth-child(3) { animation-delay:0.4s; }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

/* ─── EMOTIONAL CONNECTION ─── */
.connect-section { background:#fff; text-align:center; padding:100px 60px; }
.connect-big { font-family:var(--font-head); font-size:clamp(48px,7vw,96px); font-weight:700; color:var(--teal); line-height:1; margin:24px 0; opacity:0.12; letter-spacing:-2px; }
.connect-quote { font-family:var(--font-head); font-size:clamp(24px,3.5vw,40px); font-weight:600; color:var(--text); line-height:1.3; max-width:700px; margin:0 auto 20px; font-style:italic; }
.connect-quote span { color:var(--teal); }
.connect-sub { font-size:17px; color:var(--text2); max-width:500px; margin:0 auto 48px; line-height:1.85; }
.mood-pills { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin:40px 0; }
.mood-pill {
  padding:11px 22px; border-radius:50px; font-size:14px; font-weight:700; cursor:pointer;
  transition:transform 0.2s, box-shadow 0.2s; border:none;
}
.mood-pill:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
.mp1 { background:#e8f7f8; color:var(--teal); }
.mp2 { background:#fef3e2; color:#c87c00; }
.mp3 { background:#f0e8f7; color:#7c00b5; }
.mp4 { background:#e8f0f7; color:#004b8f; }
.mp5 { background:#f7e8e8; color:#9f2020; }
.mp6 { background:#e8f7ee; color:#1a7a3a; }

/* ─── BUILT BY XUTHOR ─── */
.xuthor-section { background:linear-gradient(160deg, var(--mint-pale), var(--teal-light)); }
.xuthor-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.xuthor-logo-block { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.xu-logo { width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg,#080b12,#1a2535); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:11px; font-weight:800; letter-spacing:2px; color:#00aeff; }
.xu-name { font-family:var(--font-head); font-size:22px; font-weight:700; color:var(--text); }
.xu-name span { color:var(--teal); }
.xuthor-badges { display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }
.xu-badge { background:rgba(11,143,172,0.08); border:1px solid rgba(11,143,172,0.18); color:var(--teal); padding:8px 18px; border-radius:50px; font-size:12px; font-weight:700; }
.xuthor-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.xu-stat { background:var(--card-bg); border:1px solid rgba(123,193,183,0.25); border-radius:18px; padding:24px; backdrop-filter:blur(10px); text-align:center; }
.xu-stat .n { font-family:var(--font-head); font-size:32px; font-weight:700; color:var(--teal); line-height:1; }
.xu-stat .l { font-size:12px; color:var(--text3); margin-top:6px; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; }

/* ─── CTA ─── */
.cta-section {
  background:linear-gradient(135deg, var(--teal) 0%, #0a7a96 40%, var(--mint) 100%);
  text-align:center; padding:110px 60px; position:relative; overflow:hidden;
}
.cta-section::after { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(255,255,255,0.05); bottom:-200px; right:-100px; }
.cta-section h2 { font-family:var(--font-head); font-size:clamp(36px,5vw,60px); font-weight:700; color:white; line-height:1.1; margin-bottom:18px; }
.cta-section h2 em { font-style:italic; opacity:0.85; }
.cta-section p { color:rgba(255,255,255,0.78); font-size:18px; margin-bottom:44px; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.8; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.btn-white { background:white; color:var(--teal); padding:16px 36px; border:none; border-radius:50px; font-family:var(--font-body); font-size:15px; font-weight:800; cursor:pointer; box-shadow:0 8px 32px rgba(0,0,0,0.18); transition:transform 0.2s, box-shadow 0.2s; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 14px 40px rgba(0,0,0,0.25); }
.btn-ghost { background:transparent; color:white; padding:15px 34px; border:2px solid rgba(255,255,255,0.4); border-radius:50px; font-family:var(--font-body); font-size:15px; font-weight:700; cursor:pointer; transition:all 0.2s; }
.btn-ghost:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.7); }
.cta-note { margin-top:20px; font-size:13px; color:rgba(255,255,255,0.55); }

/* ─── FOOTER ─── */

/* contact us */

.contact {
  background-color: #11131b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text-color);
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d5ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem;
}

.contact-info {
  color: #ccc;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info i {
  color: var(--accent);
  font-size: 1rem;
  width: 1.2rem;
}

.contact-styling{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-details {
  width: 50%;
  gap: 1rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  width: 50%;
  margin: 1rem;
}

.contact-form h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}



.footer {
  background:#0a0b10;
  padding: 50px 20px 0px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-top: 1px solid #1e2029;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 20px 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-section p, 
.footer-section a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.details{
  font-size: 14px;
  color: #ffffff;
}

.social-icons {
  margin-top: 50px;
}

.social-icons a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1663c1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ccc;
  margin-top: 50px;
}
/* footer { background:#0d1f24; padding:60px 60px 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:50px; margin-bottom:50px; }
.footer-brand .logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.logo-icon { width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,var(--teal),var(--mint)); display:flex; align-items:center; justify-content:center; font-size:18px; }
.logo-text { font-family:var(--font-head); font-size:20px; font-weight:700; }
.logo-text span:first-child { color:var(--teal); }
.logo-text span:last-child { color:var(--mint); font-style:italic; font-weight:400; }
.footer-brand p { font-size:13px; color:#6a8a90; line-height:1.8; max-width:260px; }
.footer-brand .xuthor-link { display:inline-flex; align-items:center; gap:6px; color:var(--mint); font-size:12px; font-weight:700; text-decoration:none; margin-top:14px; letter-spacing:0.5px; }
.footer-col h5 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#4a6a72; margin-bottom:18px; }
.footer-col a { display:block; color:#6a8a90; text-decoration:none; font-size:13px; margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color:var(--mint); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.05); padding:20px 0; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:#3a5a62; } */

/* ─── BREATHING EXERCISE ─── */
.breathe-section { background:linear-gradient(160deg,#e5f5f7,#d0ebe8); text-align:center; padding:90px 60px; }
.breathe-widget { position:relative; width:240px; height:240px; margin:50px auto; }
.bw-ring { position:absolute; border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); border:2px solid; }
.bw-r1 { width:240px; height:240px; border-color:rgba(11,143,172,0.15); animation:bwBreath 4s ease-in-out infinite; }
.bw-r2 { width:180px; height:180px; border-color:rgba(11,143,172,0.22); animation:bwBreath 4s 0.5s ease-in-out infinite; }
.bw-r3 { width:120px; height:120px; border-color:rgba(11,143,172,0.3); animation:bwBreath 4s 1s ease-in-out infinite; }
.bw-center { position:absolute; width:70px; height:70px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--mint)); top:50%; left:50%; transform:translate(-50%,-50%); display:flex; align-items:center; justify-content:center; font-size:26px; animation:bwBreath 4s ease-in-out infinite; box-shadow:0 0 30px rgba(11,143,172,0.4); }
@keyframes bwBreath { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.7} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:1} }
.breathe-instruction { font-size:18px; font-weight:600; color:var(--teal); letter-spacing:1px; animation:fadeLabel 4s ease-in-out infinite; }
@keyframes fadeLabel { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ─── RESPONSIVE ─── */
@media(max-width:960px) {
  nav { padding:14px 20px; }
  .nav-links { display:none; }
  section { padding:70px 24px; }
  .hero { padding:110px 24px 70px; }
  .breathe-ring { display:none; }
  .about-grid, .preview-inner, .sakha-inner, .xuthor-inner { grid-template-columns:1fr; gap:40px; }
  .features-grid { grid-template-columns:1fr; }
  .steps-track { grid-template-columns:1fr 1fr; gap:30px; }
  .steps-track::before { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { flex-direction:column; gap:8px; }
  .hero-trust { flex-wrap:wrap; }
  recognized { padding:40px 20px; }
}