/* ══ THE XYLO INTERNATIONAL — MAIN STYLESHEET ══ */
:root {
  --black: #050505;
  --dark: #191919;
  --dark2: #1e1e1e;
  --blue: #5EC1F0;
  --purple: #9E3CE8;
  --white: #FFFFFF;
  --light: #F3F4FE;
  --border: #DCDCDE;
  --grad: linear-gradient(135deg, #5EC1F0 0%, #9E3CE8 65%);
  --grad-r: linear-gradient(135deg, #9E3CE8 0%, #5EC1F0 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--dark); background: #fff; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Saira', sans-serif; color: var(--dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* BUTTONS */
.btn { display: inline-block; font-family: 'Saira', sans-serif; font-size: 14px; font-weight: 600; padding: 12px 26px; border-radius: 6px; cursor: pointer; transition: .2s; border: none; letter-spacing: .3px; }
.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

/* ══ NAV ══ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(5,5,5,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { font-family: 'Saira', sans-serif; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.72); padding: 8px 13px; border-radius: 6px; transition: .2s; white-space: nowrap; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-cta { background: var(--grad) !important; color: #fff !important; padding: 9px 20px !important; border-radius: 6px; font-weight: 600 !important; margin-left: 6px; }
.nav-cta:hover { opacity: .88; background: var(--grad) !important; }

/* Dropdown */
.drop-wrap { position: relative; }
.drop-wrap > .nav-link { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.drop-wrap > .nav-link::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid rgba(255,255,255,.45); transition: .2s; margin-top: 1px; }
.drop-wrap:hover > .nav-link::after { border-top-color: var(--blue); transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px); background: #141414; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 10px; min-width: 290px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 200; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.drop-wrap:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-item { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 9px; transition: .15s; }
.drop-item:hover { background: rgba(255,255,255,.07); }
.drop-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.drop-text { font-family: 'Saira', sans-serif; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.2; margin-bottom: 2px; }
.drop-sub { font-size: 11.5px; color: rgba(255,255,255,.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mob-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #0a0a0a; z-index: 998; overflow-y: auto; padding: 8px 0 40px; }
.mob-menu.open { display: block; }
.mob-section-label { font-family: 'Saira', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.28); padding: 14px 24px 6px; }
.mob-item { display: block; font-family: 'Saira', sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75); padding: 13px 24px; border-bottom: 1px solid rgba(255,255,255,.05); transition: .2s; }
.mob-item:hover { color: var(--blue); background: rgba(255,255,255,.03); }
.mob-sub { padding-left: 36px; font-size: 14px; color: rgba(255,255,255,.55); }
.mob-sub:hover { color: var(--blue); }
.mob-cta { margin: 20px 24px 0; display: block; background: var(--grad); color: #fff; text-align: center; padding: 15px; border-radius: 8px; font-family: 'Saira', sans-serif; font-weight: 700; font-size: 15px; }

/* SECTIONS */
.sec { padding: 90px 0; }
.sec-dark { background: var(--dark); }
.sec-light { background: var(--light); }

/* TYPOGRAPHY */
.eyebrow { font-family: 'Saira', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.eyebrow.blue { color: var(--blue); }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -.5px; line-height: 1.18; margin-bottom: 14px; }
.sec-title.white { color: #fff; }
.sec-sub { font-size: 16px; color: rgba(30,30,30,.60); line-height: 1.7; max-width: 580px; }
.sec-sub.white { color: rgba(255,255,255,.55); }
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.35); transition: .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span.sep { color: rgba(255,255,255,.20); }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(94,193,240,.10) 0%, transparent 65%); }
.page-hero-inner { position: relative; z-index: 1; }

/* ══ SERVICE HERO ══ */
.svc-hero { background: var(--dark); padding: 120px 0 90px; position: relative; overflow: hidden; }
.svc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(94,193,240,.12) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 70%, rgba(158,60,232,.10) 0%, transparent 55%); pointer-events: none; }
.svc-hero .container { position: relative; z-index: 1; }
.svc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-big-icon { width: 76px; height: 76px; border-radius: 20px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 22px; box-shadow: 0 8px 30px rgba(94,193,240,.25); }
.inc-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; background: rgba(255,255,255,.05); border-radius: 9px; border: 1px solid rgba(255,255,255,.08); margin-bottom: 8px; transition: .2s; }
.inc-item:hover { background: rgba(255,255,255,.08); border-color: rgba(94,193,240,.2); }
.inc-check { color: var(--blue); font-size: 15px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.inc-text { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.4; }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px; transition: .25s; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transition: .25s; transform-origin: left; }
.svc-card:hover { border-color: rgba(94,193,240,.4); box-shadow: 0 12px 40px rgba(94,193,240,.10); transform: translateY(-3px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 13.5px; color: rgba(30,30,30,.60); line-height: 1.65; margin-bottom: 0; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.res-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: .2s; position: relative; overflow: hidden; }
.res-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); }
.res-card:hover { box-shadow: 0 10px 36px rgba(94,193,240,.12); transform: translateY(-2px); }
.res-niche { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(30,30,30,.38); margin-bottom: 8px; }
.res-metric { font-family: 'Saira', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--blue); }
.res-metric.purple { color: var(--purple); }
.res-desc { font-size: 13.5px; color: rgba(30,30,30,.62); line-height: 1.6; }

/* GSC */
.gsc-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .25s; }
.gsc-card:hover { box-shadow: 0 12px 40px rgba(94,193,240,.12); transform: translateY(-3px); }
.gsc-card-top { padding: 16px 20px; background: var(--light); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.gsc-tag { font-family: 'Saira', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--purple); background: rgba(158,60,232,.08); border: 1px solid rgba(158,60,232,.2); border-radius: 20px; padding: 3px 10px; }
.gsc-period { font-size: 12px; color: rgba(30,30,30,.45); font-weight: 500; }
.gsc-screenshot { width: 100%; display: block; border-bottom: 1px solid var(--border); }
.gsc-card-bottom { padding: 16px 20px; display: flex; gap: 20px; }
.gsc-stat { text-align: center; flex: 1; }
.gsc-stat-val { font-family: 'Saira', sans-serif; font-size: 1.2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 3px; }
.gsc-stat-lbl { font-size: 11px; color: rgba(30,30,30,.45); }

/* STATS STRIP */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.stat-box { background: var(--dark); padding: 28px 20px; text-align: center; }
.stat-n { font-family: 'Saira', sans-serif; font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-n em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-l { font-size: 13px; color: rgba(255,255,255,.42); margin-top: 5px; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px; box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.testi-stars { color: #f59e0b; font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-q { font-size: 14.5px; color: rgba(30,30,30,.70); line-height: 1.68; font-style: italic; margin-bottom: 20px; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: 'Saira', sans-serif; font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-family: 'Saira', sans-serif; font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: rgba(30,30,30,.42); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--light); border-radius: 10px; border: 1px solid transparent; overflow: hidden; transition: .2s; }
.faq-item.open { border-color: rgba(94,193,240,.25); background: #fff; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-family: 'Saira', sans-serif; font-size: 15px; font-weight: 600; gap: 16px; user-select: none; }
.faq-q::after { content: '+'; color: var(--blue); transition: .3s; flex-shrink: 0; font-size: 20px; font-weight: 300; line-height: 1; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 14.5px; color: rgba(30,30,30,.65); line-height: 1.75; padding: 0 22px 20px; display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA SECTION */
.cta-sec { background: var(--dark); position: relative; overflow: hidden; padding: 90px 0; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(94,193,240,.10) 0%, transparent 65%); }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1.2px; color: #fff; margin-bottom: 14px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 34px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FORMS */
.form-group { margin-bottom: 14px; }
.form-group label { font-family: 'Saira', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .5px; color: rgba(30,30,30,.55); display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 7px; font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--dark); background: #fff; transition: .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,.50); padding: 64px 0 28px; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.f-brand img { height: 32px; width: auto; margin-bottom: 16px; }
.f-brand p { font-size: 13.5px; color: rgba(255,255,255,.36); line-height: 1.75; max-width: 240px; margin-bottom: 22px; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.50); transition: .2s; }
.f-social a:hover { background: var(--grad); color: #fff; }
.f-col h4 { font-family: 'Saira', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.36); transition: .2s; }
.f-col ul li a:hover { color: var(--blue); }
.f-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-bottom p { font-size: 12.5px; color: rgba(255,255,255,.22); }

/* INDUSTRY GRID */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ind-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; text-align: center; transition: .2s; }
.ind-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(94,193,240,.12); transform: translateY(-2px); }
.ind-icon { font-size: 28px; margin-bottom: 12px; }
.ind-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.ind-card p { font-size: 12px; color: rgba(30,30,30,.50); }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 38px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(94,193,240,.35), rgba(158,60,232,.35), transparent); }
.proc-item { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.proc-num { width: 76px; height: 76px; border-radius: 50%; background: #fff; border: 2px solid rgba(94,193,240,.30); display: flex; align-items: center; justify-content: center; font-family: 'Saira', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--blue); margin: 0 auto 22px; box-shadow: 0 0 0 10px var(--light); }
.proc-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.proc-item p { font-size: 13.5px; color: rgba(30,30,30,.58); line-height: 1.6; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .2s; display: block; }
.blog-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-thumb { height: 180px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 22px; }
.blog-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--purple); margin-bottom: 8px; }
.blog-body h2 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13.5px; color: rgba(30,30,30,.58); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: rgba(30,30,30,.38); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .svc-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 60px 0; }
  .svc-hero { padding: 100px 0 64px; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid, .results-grid, .testi-grid, .blog-grid, .ind-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .f-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .faq-list { max-width: 100%; }
}
