﻿:root{
  --orange:#ff6b00;
  --orange-2:#ff8a2b;
  --ink:#111318;
  --muted:#6d717b;
  --soft:#f8f8f8;
  --line:#ececec;
  --card:#fff;
  --shadow:0 22px 55px rgba(20,20,20,.10);
  --radius:18px;
  --container:1030px;
  --text-base:15px;
  --text-body:14px;
  --text-small:13px;
  --text-xs:12px;
  --title-md:35px;
  --title-sm:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:var(--text-base);
  line-height:1.65;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
h1,h2,h3,p{margin-top:0}
h2{
  font-size:var(--title-md);
  line-height:1.08;
  letter-spacing:-1px;
  margin-bottom:10px;
}
.container{width:min(var(--container),calc(100% - 42px));margin-inline:auto}
.narrow{max-width:680px;text-align:center}
.section-white{background:#fff}
.section-soft{background:var(--soft)}
[hidden]{display:none!important}
.nav-links a[href="products.html"],
.nav-links a[href="blogs.html"],
.footer nav a[href="products.html"],
.footer nav a[href="blogs.html"],
.projects,
.products-page,
.blog-page,
.socials a[href*="youtube.com"]{
  display:none!important;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(15px);
  border-bottom:1px solid rgba(0,0,0,.04);
}
.navbar{
  height:70px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:22px;
  position:relative;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
  justify-self:start;
}
.brand-text{
  display:inline-flex;
  align-items:center;
  font-size:18px;
  line-height:1;
  color:var(--ink);
  font-weight:800;
  letter-spacing:.02em;
  text-transform:lowercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:15px;
  font-weight:500;
  color:#333;
  justify-self:center;
}
.nav-links a{
  position:relative;
  font-size:15px;
  line-height:1;
  font-weight:500;
}
.nav-links a.active,
.nav-links a:hover{color:var(--orange)}
.nav-links a.active:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  translate:-50% 0;
  width:5px;
  height:5px;
  background:var(--orange);
  border-radius:50%;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  padding:12px 22px;
  box-shadow:0 12px 25px rgba(255,107,0,.25);
}
.btn-primary:hover{
  transform:translateY(-2px);
  background:#f05f00;
}
.btn-small{font-size:14px;padding:10px 18px}
.nav-cta{font-size:14px;padding:10px 20px}
.hero-cta{
  position:relative;
  padding:14px 58px 14px 24px;
  border:6px solid #ffe7d2;
  box-shadow:0 14px 28px rgba(255,107,0,.20);
  max-width:100%;
  text-align:center;
  line-height:1.2;
}
.hero-cta:after{
  content:"↗";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  line-height:1;
  font-weight:600;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  justify-self:end;
}
.lang-toggle{
  border:1px solid #1a1a1a;
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:8px 16px;
  font-family:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
  min-width:86px;
  text-align:center;
  line-height:1;
}
.lang-toggle:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 18px rgba(0,0,0,.08);
}

.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  gap:5px;
  flex-direction:column;
}
.nav-toggle span{
  width:22px;
  height:2px;
  background:#111;
  display:block;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:68px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:42px;
  padding-bottom:72px;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  justify-content:flex-start;
  width:max-content;
  position:relative;
}
.eyebrow span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:90px;
  height:50px;
  padding:0 24px;
  border:2px solid #3b3b3b;
  border-radius:999px;
  background:#fff;
  color:#1c1c1c;
  font-size:22px;
  font-weight:600;
  line-height:1;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}
.eyebrow i{
  display:block;
  position:absolute;
  top:-15px;
  right:-30px;
  width:32px;
  height:33px;
  background-image:url("assets/hi-icon.svg?v=20260504-story-cards");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.95;
  margin-left:0;
  transform:none;
}

h1{font-size:58px;line-height:.96;letter-spacing:-2.1px;margin-bottom:18px}
h1 span,h2 span,.footer span{color:var(--orange)}
.role-line{
  display:inline-flex;
  align-items:baseline;
  min-height:1.08em;
  max-width:100%;
  white-space:normal;
}
.typed-role{
  display:inline-block;
  max-width:100%;
  overflow-wrap:break-word;
}
.typing-caret{
  display:inline-block;
  width:3px;
  height:.86em;
  background:var(--orange);
  margin-left:7px;
  transform:translateY(3px);
  animation:blink .75s steps(1,end) infinite;
}
@keyframes blink{50%{opacity:0}}

.hero-copy p{max-width:560px;color:#767676;margin-bottom:24px}
.hero-copy{position:relative}
.hero-visual{display:grid;justify-items:center}
.portrait-card{
  border-radius:50%;
  overflow:hidden;
  background:#fde5d8;
  box-shadow:0 26px 65px rgba(0,0,0,.13);
}
.portrait-main{
  width:min(330px,78vw);
  height:min(330px,78vw);
  border:12px solid #ffe7da;
  background:#fff;
}
.portrait-small{
  width:156px;
  height:156px;
  margin:0 auto 22px;
  border:7px solid #fff;
  box-shadow:0 16px 45px rgba(0,0,0,.12);
}
.portrait-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 28%;
  border-radius:50%;
}
.portrait-small img{object-position:center 24%}

.socials{
  display:flex;
  gap:16px;
  margin-top:18px;
  align-items:center;
  justify-content:center;
}
.socials a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#111;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  transition:.25s ease;
}
.socials a svg{
  width:23px;
  height:23px;
  fill:currentColor;
  display:block;
}
.socials a:hover{
  color:#fff;
  background:var(--orange);
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(255,107,0,.22);
}
.socials.dark a{background:#f1f1f1}
.contact-section .socials.dark a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#111;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.contact-section .socials.dark a:hover{
  color:#fff;
  background:var(--orange);
  border-color:var(--orange);
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(255,107,0,.22);
}

.marquee-wrap{
  background:var(--orange);
  min-height:72px;
  display:flex;
  align-items:center;
  padding:15px 0;
  transform:rotate(-2deg) scaleX(1.06);
  transform-origin:center;
  box-shadow:0 18px 35px rgba(255,107,0,.18);
  overflow:hidden;
  position:relative;
}
.marquee-wrap:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:52px;
  transform:translateY(-50%);
  background:#fff;
  z-index:0;
}
.marquee{
  display:flex;
  gap:18px;
  white-space:nowrap;
  animation:marquee 22s linear infinite;
  color:#111;
  font-weight:700;
  font-size:28px;
  line-height:1;
  padding:10px 22px;
  min-width:max-content;
  position:relative;
  z-index:1;
}
.marquee span{
  display:inline-flex;
  align-items:center;
}
.marquee span:before{
  content:"✦";
  margin-right:12px;
  color:var(--orange);
  font-size:.9em;
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-45%)}
}
@keyframes marquee-rtl{
  from{transform:translateX(0)}
  to{transform:translateX(45%)}
}

section{padding:78px 0}
.services{
  padding-top:88px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,107,0,.09), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(255,138,43,.10), transparent 14%),
    linear-gradient(180deg, #fffaf6 0%, #fff 54%, #fff8f2 100%);
}
.services:before{
  content:"";
  position:absolute;
  inset:44px auto auto 6%;
  width:150px;
  height:150px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,107,0,.10), rgba(255,107,0,0));
  pointer-events:none;
}
.services:after{
  content:"";
  position:absolute;
  right:5%;
  top:120px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,107,0,.7);
  box-shadow:0 0 0 12px rgba(255,107,0,.08);
  pointer-events:none;
}
.services .narrow{
  max-width:860px;
  position:relative;
  z-index:1;
}
.services .narrow h2{
  font-size:35px;
  line-height:1.08;
  letter-spacing:-1px;
  margin-bottom:18px;
}
.services .lead{
  max-width:900px;
  margin-inline:auto;
  font-size:var(--text-base);
  line-height:1.85;
  color:#616878;
}
.about-page .about{padding-top:72px}
.lead{color:var(--muted);font-size:var(--text-base)}

.cards.three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:42px;
  position:relative;
  z-index:1;
}
.service-card,
.process-card,
.project-card,
.story-card,
.cert-card,
.contact-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.035);
}
.service-card{
  padding:30px 26px 24px;
  position:relative;
  overflow:hidden;
  min-height:284px;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 18px 44px rgba(17,19,24,.07);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  background:#fff;
}
.service-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,107,0,.12), transparent 28%),
    linear-gradient(135deg, rgba(255,107,0,.06), transparent 40%);
  opacity:.28;
  pointer-events:none;
}
.service-card:after{
  content:"";
  position:absolute;
  inset:auto -20px -50px auto;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,107,0,.08), transparent 68%);
  pointer-events:none;
}
.service-card .line{
  position:absolute;
  left:0;
  top:22px;
  bottom:22px;
  width:4px;
  background:var(--orange);
  border-radius:0 5px 5px 0;
  transition:transform .28s ease, width .28s ease, opacity .28s ease;
}
.service-card h3,
.process-card h3{font-size:var(--title-sm);line-height:1.35;margin-bottom:10px}
.service-card h3{
  font-size:17px;
  line-height:1.32;
  letter-spacing:-.4px;
  margin-bottom:12px;
  max-width:16ch;
}
.service-card p,
.process-card p,
.story-card p,
.contact-card p{font-size:var(--text-body);color:var(--muted)}
.service-card p{
  font-size:var(--text-body);
  line-height:1.75;
  color:#62697a;
  margin-bottom:20px;
}
.service-card h3,
.service-card p,
.service-card .tags{position:relative;z-index:1}
.service-card:hover{
  transform:translateY(-12px) scale(1.01);
  box-shadow:0 30px 60px rgba(255,107,0,.14);
  border-color:var(--orange);
  background:#fff;
}
.service-card:hover .line{
  width:6px;
  transform:scaleY(1.04);
}
.service-card:hover .tags small{
  background:var(--orange);
  color:#fff;
  box-shadow:0 10px 20px rgba(255,107,0,.18);
  transform:translateY(-1px);
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:auto;
}
.tags small,
.filter-tabs button{
  background:#fff3ea;
  color:var(--orange);
  border:0;
  border-radius:999px;
  padding:7px 12px;
  font-size:11px;
  font-weight:700;
  transition:background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.center{text-align:center;margin-top:28px}

.process-grid{
  width:min(560px,calc(100% - 42px));
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:32px;
}
.process-card{padding:25px}
.process-card b{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  font-size:12px;
  margin-bottom:14px;
}

.filter-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:30px auto 28px;
}
.filter-tabs button{
  cursor:pointer;
  background:#fff;
  color:#444;
  border:1px solid #e8e8e8;
  font-size:12px;
  font-weight:800;
  padding:9px 16px;
  box-shadow:0 8px 18px rgba(0,0,0,.035);
}
.filter-tabs button.active{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}
.project-card{
  padding:12px;
  box-shadow:none;
  background:transparent;
  border:0;
}
.project-shot{
  height:235px;
  border-radius:10px;
  margin-bottom:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
  background:#fff;
}
.project-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
  border-radius:10px;
}
.project-card small,
.cert-card small{
  color:var(--orange);
  font-size:10px;
  font-weight:700;
}
.project-card h3,
.cert-card h3{
  font-size:16px;
  margin-top:3px;
}

.logo-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:48px;
  flex-wrap:wrap;
  max-width:1180px;
  margin-inline:auto;
}
.company-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  min-height:72px;
  padding:6px 10px;
}
.company-logo img{
  display:block;
  max-width:140px;
  max-height:76px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.company-logo-easybooks{
  flex-direction:column;
  gap:4px;
  color:#0098c8;
}
.easybooks-mark{
  font-size:62px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.08em;
  transform:skewX(-10deg);
}
.easybooks-word{
  font-size:20px;
  line-height:1;
  font-weight:800;
}
.company-logo-kadnya{
  gap:10px;
  color:#173a66;
  min-width:170px;
}
.kadnya-mark{
  position:relative;
  width:18px;
  height:18px;
  display:inline-block;
}
.kadnya-mark:before,
.kadnya-mark:after{
  content:"";
  position:absolute;
  left:0;
  width:12px;
  height:12px;
  border-left:4px solid currentColor;
  border-bottom:4px solid currentColor;
  transform:rotate(45deg);
  border-radius:2px;
}
.kadnya-mark:before{top:-1px}
.kadnya-mark:after{top:7px}
.kadnya-word{
  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:.02em;
}
.logo-row .company-logo:last-child img{
  max-width:160px;
}
html[dir="rtl"] .logo-row{
  justify-content:center;
}

.about{padding-top:35px}
.about-hero{text-align:center;max-width:820px}
.about-hero h2{font-size:var(--title-md);margin-bottom:9px}
.about-hero p{
  max-width:760px;
  margin:auto;
  color:var(--muted);
  font-size:var(--text-base);
}

.story-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  margin-top:64px;
  max-width:850px;
  align-items:stretch;
}
.story-card{
  min-height:360px;
  height:100%;
  overflow:hidden;
}
.story-card.text{
  padding:36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.story-card.image{
  padding:0;
  height:100%;
  min-height:360px;
  display:flex;
}
.story-card.wide{grid-column:auto}
.photo{width:100%;height:100%;min-height:230px}
.photo-img{
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  display:block;
  flex:1;
}
.cert-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  max-width:1080px;
  margin-inline:auto;
}
.cert-card{
  padding:12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.055);
  box-shadow:0 18px 44px rgba(17,19,24,.08);
  border-radius:16px;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cert-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,107,0,.35);
  box-shadow:0 26px 60px rgba(17,19,24,.12);
}
.cert-preview{
  display:block;
  aspect-ratio:1.34;
  border-radius:12px;
  background:#fff8f2;
  border:1px solid #f0eee9;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.6);
}
.cert-preview img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transition:transform .35s ease;
}
.cert-card:hover .cert-preview img{transform:scale(1.025)}
.cert-info{
  padding:16px 4px 3px;
}
.cert-info small{
  display:inline-flex;
  align-items:center;
  max-width:100%;
  color:var(--orange);
  background:#fff3ea;
  border-radius:999px;
  padding:6px 10px;
  font-size:10px;
  font-weight:800;
  line-height:1;
}
.cert-info h3{
  margin:10px 0 6px;
  font-size:16px;
  line-height:1.35;
  letter-spacing:0;
}
.cert-info p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.blog-hero{padding:88px 0 52px}
.eyebrow-text{
  color:var(--orange);
  font-weight:800;
  letter-spacing:.04em;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.blog-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.04);
  padding:16px;
  transition:.25s ease;
}
.blog-card:hover{transform:translateY(-5px)}
.blog-cover{
  height:210px;
  border-radius:13px;
  margin-bottom:16px;
  position:relative;
  overflow:hidden;
}
.blog-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
  border-radius:13px;
}
.blog-card small{
  color:var(--orange);
  font-size:11px;
  font-weight:800;
}
.blog-card h3{
  font-size:20px;
  line-height:1.35;
  margin:8px 0 9px;
}
.blog-card p{font-size:var(--text-body);color:var(--muted)}
.blog-card>a{
  font-size:12px;
  font-weight:800;
  color:var(--orange);
}

.contact-section{padding:58px 0 85px}
.contact-card{
  max-width:710px;
  margin:auto;
  text-align:center;
  padding:42px 48px;
}
.contact-card h2{font-size:var(--title-md)}
.contact-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:25px auto 15px;
  max-width:520px;
}
.contact-pill{
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
  background:#fff;
  border:1px solid #efefef;
  box-shadow:0 15px 35px rgba(0,0,0,.07);
  border-radius:9px;
  padding:13px 18px;
}
.contact-pill b{
  width:28px;
  height:28px;
  border-radius:7px;
  background:#fff1e8;
  color:var(--orange);
  display:grid;
  place-items:center;
}
.contact-pill span{
  font-size:12px;
  font-weight:700;
  line-height:1.35;
}
.contact-pill small{font-weight:400;color:#7b7b7b}

.footer{
  background:#151515;
  color:#fff;
  padding:22px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:11px;
}
.footer nav{
  display:flex;
  gap:24px;
  color:#cfcfcf;
}
.footer p{margin:0;color:#cfcfcf}
.footer .brand-text{color:#fff}

.cursor-dot{
  position:fixed;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--orange);
  left:0;
  top:0;
  pointer-events:none;
  z-index:200;
  transform:translate(-50%,-50%);
  opacity:.65;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .65s ease,transform .65s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}

html[dir="rtl"] body,
html[dir="rtl"] body *,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea{
  font-family:Cairo,Arial,sans-serif;
}
html[dir="rtl"] body{letter-spacing:0}
html[dir="rtl"] .brand-text{text-transform:none}
html[dir="rtl"] .contact-pill{text-align:right}
html[dir="rtl"] .service-card .line{
  left:auto;
  right:0;
  border-radius:5px 0 0 5px;
}
html[dir="rtl"] .marquee{animation:marquee-rtl 22s linear infinite}
html[dir="rtl"] .navbar{
  grid-template-columns:auto 1fr auto;
}
html[dir="rtl"] .nav-actions{
  justify-self:end;
  min-width:max-content;
}
html[dir="rtl"] .nav-links{
  justify-self:center;
  position:static;
  transform:none;
  gap:20px;
  flex-wrap:wrap;
}
html[dir="rtl"] .hero-copy{text-align:right}
html[dir="rtl"] .hero-copy p{margin-right:0;margin-left:auto}
html[dir="rtl"] .eyebrow{
  justify-content:flex-start;
}
html[dir="rtl"] .role-line{justify-content:flex-end}
html[dir="rtl"] .certificate span{
  left:auto;
  right:24px;
}

@media (max-width:900px){
  h1{font-size:45px}
  .hero-grid,
  .cards.three,
  .project-grid,
  .cert-grid,
  .story-grid,
  .blog-grid{grid-template-columns:1fr}
  .hero-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:26px;
  }
  .hero-copy{display:contents}
  .eyebrow{
    order:1;
    width:100%;
    margin:0 auto;
    justify-content:center;
    gap:6px;
  }
  .eyebrow span{
    margin-inline:auto;
  }
  .eyebrow i{
    position:absolute;
    top:-10px;
    right:calc(50% - 76px);
    width:28px;
    height:29px;
  }
  .hero-visual{order:2}
  .hero-copy h1{
    order:3;
    max-width:100%;
    margin:0;
    text-align:center;
  }
  .hero-copy p{
    order:4;
    max-width:min(560px,100%);
    text-align:center;
  }
  .hero-cta{order:5}
  .hero-copy{text-align:center}
  .hero-copy p{margin-inline:auto}
  .role-line{
    justify-content:center;
    max-width:min(100%,13em);
  }
  .process-grid{grid-template-columns:1fr 1fr}
  .nav-links{
    position:absolute;
    top:calc(100% + 10px);
    left:50%;
    right:auto;
    transform:translateX(-50%);
    width:min(220px,calc(100vw - 36px));
    background:#fff;
    border:1px solid #eee;
    box-shadow:var(--shadow);
    border-radius:16px;
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:center;
    text-align:center;
    z-index:70;
  }
  .nav-links.open{display:flex}
  .nav-toggle{display:flex}
  .nav-cta{display:none}
  .lang-toggle{align-self:flex-start;padding:8px 12px}
  .nav-actions{justify-self:end}
  .footer-inner{flex-direction:column}
  .footer nav{flex-wrap:wrap;justify-content:center}
  .story-card.wide{grid-column:auto}
  .story-grid{align-items:start}
  .story-card{
    height:auto;
    min-height:auto;
  }
  .story-card.text{justify-content:flex-start}
  .story-card.image{min-height:220px}
  .cert-grid{
    width:min(520px,calc(100% - 42px));
    max-width:520px;
  }
  .cert-card{
    width:100%;
    min-width:0;
  }
  .cert-preview{aspect-ratio:1.55}
  .socials a{width:44px;height:44px}
  .filter-tabs button{font-size:12px;padding:8px 14px}
  html[dir="rtl"] .hero-copy{text-align:center}
  html[dir="rtl"] .hero-copy p{margin-inline:auto;text-align:center}
  html[dir="rtl"] .eyebrow{
    width:100%;
    margin:0 auto;
    justify-content:center;
  }
  html[dir="rtl"] .eyebrow i{
    right:calc(50% - 76px);
    left:auto;
  }
  html[dir="rtl"] .nav-links{
    left:50%;
    right:auto;
    transform:translateX(-50%);
  }
  html[dir="rtl"] .hero-copy h1{text-align:center}
  html[dir="rtl"] .role-line{justify-content:center}
}

@media (max-width:560px){
  section{padding:58px 0}
  .navbar{height:64px}
  .hero{padding-top:42px}
  .hero-grid{padding-bottom:48px;gap:22px}
  h1{font-size:34px;line-height:1.06;letter-spacing:0}
  h2{font-size:24px}
  .cards.three{gap:16px}
  .process-grid,
  .contact-actions{grid-template-columns:1fr}
  .contact-card{padding:32px 22px}
  .logo-row{gap:24px}
  .cursor-dot{display:none}
  .marquee-wrap{min-height:48px}
  .marquee-wrap:before{height:38px}
  .marquee{font-size:16px;padding:8px 14px}
  .story-card.text{padding:25px}
  .eyebrow{justify-content:center}
  html[dir="rtl"] .eyebrow{
    width:100%;
    margin:0 auto;
    justify-content:center;
  }
  .eyebrow span{
    min-width:74px;
    height:42px;
    padding:0 18px;
    font-size:20px;
  }
  .eyebrow i{font-size:24px}
  .role-line{max-width:11.5em}
  .typed-role{line-height:1.18}
  .hero-cta{
    width:min(100%,390px);
    padding:13px 18px;
    border-width:5px;
    white-space:normal;
    overflow-wrap:break-word;
    font-size:16px;
  }
  .hero-cta:after{
    display:none;
  }
  .brand-text{font-size:12px}
  .nav-actions{gap:8px}
  .lang-toggle{min-width:78px;font-size:11px;padding:7px 10px}
  .socials a{width:42px;height:42px}
  .filter-tabs{gap:8px}
  .filter-tabs button{font-size:11px;padding:8px 12px}
  .cert-grid{
    width:calc(100% - 32px);
    gap:16px;
  }
  .cert-card{padding:9px}
  .cert-preview{aspect-ratio:1.65}
  .cert-info{padding:12px 2px 0}
  .cert-info h3{font-size:15px}
  .cert-info p{font-size:11px}
  .company-logo{min-width:88px;min-height:58px}
  .company-logo img{max-width:112px;max-height:58px}
  .easybooks-mark{font-size:48px}
  .easybooks-word{font-size:16px}
  .kadnya-word{font-size:22px}
}






