/*
Theme Name: Zynwaa Custom Theme
Theme URI: https://example.com/zynwaa-custom-theme
Author: Copilot
Description: A modern one-page WordPress theme for the Zynwaa agency website.
Version: 1.0.0
Text Domain: zynwaa-custom-theme
*/

:root {
  --teal: #4caba7;
  --teal-deep: #36807e;
  --teal-light: #6fc8c5;
  --teal-tint: #eaf5f4;
  --dark: #111818;
  --ink: #1c2222;
  --grey: #5f7070;
  --light: #f7fbfb;
  --line: #e5eded;
  --white: #fff;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 48px -20px rgba(32, 32, 32, 0.16);
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 999px; border: none; cursor: pointer; font-weight: 600; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(76,170,167,0.55); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost-light { color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
#header { position: fixed; inset: 0 0 auto 0; z-index: 1000; transition: background .3s var(--ease), box-shadow .3s var(--ease); }
#header nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 40px; }
#header.solid { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
#header.solid nav { padding: 14px 40px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; color: #fff; }
#header.solid .logo { color: var(--ink); }
.logo-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; gap: 30px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.72); }
#header.solid .nav-links { color: rgba(28,34,34,0.7); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-book { background: #fff; color: var(--ink); }
#header:not(.solid) .nav-book { background: var(--teal); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }
#header.solid .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px; opacity: 0; transition: opacity .3s var(--ease); }
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a { font-size: 28px; font-weight: 700; color: #fff; }
.hero { min-height: 100vh; background: linear-gradient(135deg, #111818 0%, #172626 100%); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.aurora { position: absolute; inset: 0; pointer-events: none; }
.ab { position: absolute; border-radius: 50%; filter: blur(90px); }
.ab1 { width: 700px; height: 500px; background: radial-gradient(circle, rgba(76,171,167,.6) 0%, transparent 65%); top: -160px; left: -80px; }
.ab2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(54,128,126,.38) 0%, transparent 65%); bottom: -200px; right: -60px; }
.ab3 { width: 380px; height: 340px; background: radial-gradient(circle, rgba(76,171,167,.2) 0%, transparent 70%); top: 45%; left: 52%; }
.hero-body { flex: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding: 150px 40px 80px; max-width: 1160px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-copy h1 { font-size: clamp(38px, 5.5vw, 72px); line-height: 1.03; color: #fff; margin-bottom: 22px; }
.hero-copy .teal { color: var(--teal-light); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.72; margin-bottom: 32px; max-width: 500px; }
.hero-eyebrow { display: inline-flex; gap: 8px; align-items: center; padding: 7px 16px; border-radius: 999px; background: rgba(76,171,167,.12); border: 1px solid rgba(76,171,167,.3); color: var(--teal-light); margin-bottom: 24px; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; color: rgba(255,255,255,.6); }
.hero-visual { position: relative; }
.dashboard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 24px; backdrop-filter: blur(12px); box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.db-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.db-dots { display: flex; gap: 6px; }
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot.r { background: #ff5f57; } .db-dot.y { background: #ffbd2e; } .db-dot.g { background: #28c840; }
.db-title { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 0.06em; }
.db-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.db-metric { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.dm-label { font-size: 10.5px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.dm-value { font-size: 22px; font-weight: 700; color: #fff; }
.dm-change { font-size: 11px; margin-top: 3px; font-weight: 600; }
.dm-change.up { color: #3ec9a0; }
.db-service-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border-radius: 10px; padding: 10px 12px; margin-top: 8px; }
.ds-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ds-label { flex: 1; color: rgba(255,255,255,.76); font-size: 12.5px; }
.ds-bar-wrap { width: 70px; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.ds-bar { height: 100%; border-radius: 2px; background: var(--teal); }
.db-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; color: rgba(255,255,255,.4); font-size: 11px; }
.float-pill { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 16px; z-index: 4; backdrop-filter: blur(12px); }
.fp1 { top: -20px; right: -20px; }
.fp2 { bottom: -16px; left: -24px; }
.fp-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.fp-value { font-size: 18px; font-weight: 700; color: #fff; }
.fp-sub { font-size: 11px; color: var(--teal-light); margin-top: 2px; }
.hero-ticker { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; overflow: hidden; display: flex; }
.ticker-track { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 13px; color: rgba(255,255,255,.4); }
.ticker-dot { width: 4px; height: 4px; background: var(--teal); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.section { padding: 120px 0; }
.section.alt { background: var(--light); }
.section.dark { background: var(--dark); padding: 120px 0; }
.section-head { max-width: 600px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.overline { display: block; margin-bottom: 13px; color: var(--teal-deep); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.section.dark .overline { color: var(--teal-light); }
.section-head h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; }
.section.dark .section-head h2, .section.dark .case-card h3 { color: #fff; }
.section-head p { margin-top: 13px; color: var(--grey); line-height: 1.65; }
.section.dark .section-head p { color: rgba(255,255,255,.45); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.stats-section { background: var(--dark); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 0 20px; }
.stat-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(76,171,167,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.stat-icon svg { stroke: var(--teal-light); }
.stat-num { font-size: clamp(34px, 4vw, 50px); font-weight: 700; color: #fff; }
.stat-num .teal { color: var(--teal); }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 8px; }
.services-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.svc-tab { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 20px; font-size: 14px; font-weight: 600; color: var(--grey); cursor: pointer; }
.svc-tab.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.svc-panel { display: none; }
.svc-panel.active { display: block; }
.svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.svc-info { background: #fff; padding: 40px; }
.svc-icon-lg { width: 56px; height: 56px; border-radius: 15px; background: var(--teal-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.svc-info h3 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 14px; }
.svc-info p { font-size: 15.5px; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }
.svc-list { display: flex; flex-direction: column; gap: 10px; }
.svc-list-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.svc-check { width: 22px; height: 22px; border-radius: 6px; background: var(--teal-tint); display: flex; align-items: center; justify-content: center; }
.svc-visual { background: var(--dark); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.svc-visual-label { font-size: 11px; color: var(--teal-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.svc-highlights { display: flex; flex-direction: column; gap: 12px; }
.svc-hl { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; color: rgba(255,255,255,.8); font-size: 13.5px; }
.port-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.port-btn { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: 13.5px; font-weight: 600; color: var(--grey); cursor: pointer; }
.port-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.port-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.port-img { height: 210px; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.port-body { padding: 22px; }
.port-cat { color: var(--teal-deep); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.port-body h4 { font-size: 17px; font-weight: 600; margin-bottom: 7px; }
.port-body p { font-size: 13.5px; color: var(--grey); line-height: 1.55; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: #fff; }
.why-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 9px; }
.why-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 0 20px; }
.ps-circle { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.ps-num { color: var(--teal-deep); font-weight: 600; }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--grey); line-height: 1.6; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 30px; }
.cc-tag { display: inline-block; background: rgba(76,171,167,.15); color: var(--teal-light); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.case-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.cc-challenge, .cc-solution { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 18px; }
.cc-solution { color: rgba(255,255,255,.6); padding-left: 14px; border-left: 2px solid var(--teal); }
.cc-metric { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.04); border-radius: 10px; padding: 10px 14px; margin-bottom: 10px; font-size: 12.5px; color: rgba(255,255,255,.55); }
.ccm-value { color: var(--teal-light); font-weight: 600; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--ink); }
.faq-item.open .faq-q { color: var(--teal-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 20px; color: var(--grey); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 240px; }
.contact-section { padding: 120px 0; background: var(--light); }
.cta-headline { text-align: center; margin-bottom: 72px; }
.cta-headline h2 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; margin-bottom: 16px; }
.cta-headline h2 .teal { color: var(--teal); }
.cta-headline p { font-size: 17px; color: var(--grey); max-width: 480px; margin: 0 auto 30px; line-height: 1.65; }
.cta-headline-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.ci-label { font-size: 11.5px; font-weight: 600; color: var(--teal-deep); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.ci-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--teal-tint); display: flex; align-items: center; justify-content: center; }
.ci-item h5 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.ci-item a { color: var(--grey); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 15px; border: 1.5px solid var(--line); border-radius: 10px; outline: none; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; }
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 52px; height: 52px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px -6px rgba(37,211,102,.6); }
footer { background: #0d1818; padding: 64px 0 26px; color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.06); }
.foot-brand p { color: rgba(255,255,255,.35); margin: 16px 0 20px; line-height: 1.65; max-width: 260px; }
.foot-social { display: flex; gap: 8px; }
.foot-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.foot-col h5 { margin-bottom: 18px; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.foot-col a { display: block; color: rgba(255,255,255,.38); margin-bottom: 10px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.22); }
.back-top { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; background: transparent; color: #fff; }
@media (max-width: 1024px) { .nav-links { display: none; } #header nav { padding: 18px 24px; } #header.solid nav { padding: 12px 24px; } .hamburger { display: flex; } .hero-body { grid-template-columns: 1fr; padding: 130px 24px 60px; text-align: center; } .hero-sub { margin-inline: auto; } .hero-ctas { justify-content: center; } .hero-trust { justify-content: center; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .svc-layout { grid-template-columns: 1fr; } .port-grid { grid-template-columns: repeat(2, 1fr); } .why-grid { grid-template-columns: repeat(2, 1fr); } .process-timeline { grid-template-columns: repeat(2, 1fr); } .case-grid { grid-template-columns: 1fr 1fr; } .contact-grid { grid-template-columns: 1fr; } .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .wrap { padding: 0 20px; } .hero-body { padding: 120px 20px 50px; } .hero h1 { font-size: 36px; } .hero-ctas { flex-direction: column; align-items: stretch; } .section, .section.alt, .section.dark, .contact-section { padding: 80px 0; } .stats-grid, .port-grid, .why-grid, .process-timeline, .case-grid, .foot-grid, .form-row { grid-template-columns: 1fr; } .cta-headline-btns { flex-direction: column; align-items: center; } .cta-headline h2 { font-size: 34px; } }
