* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f172a;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #1e293b;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.lang-nav a {
  margin-left: 10px;
  color: #94a3b8;
  text-decoration: none;
}

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 40px;
  align-items: center;
}

.badge {
  background: #ef4444;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 6px;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.lead {
  color: #cbd5f5;
  margin-bottom: 30px;
}

.hero-actions a {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn.primary {
  background: #3b82f6;
  color: #fff;
}

.btn.whatsapp {
  background: #22c55e;
  color: #fff;
}

.offer-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 10px;
}

.offer-card input,
.offer-card textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.offer-card button {
  width: 100%;
  padding: 12px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
}

.seo-section {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.content-grid article {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
}

.site-footer {
  padding: 20px 0;
  border-top: 1px solid #1e293b;
  text-align: center;
  margin-top: 40px;
}

.seo-text {
  padding: 60px 0;
}

.seo-text h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.seo-text p {
  margin-bottom: 25px;
  color: #cbd5f5;
  line-height: 1.6;
}

.page-hero {
  padding: 70px 0 30px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 750px;
  color: #cbd5f5;
  line-height: 1.6;
}

.page-content {
  padding: 30px 0 70px;
}

.content-box {
  background: #1e293b;
  padding: 35px;
  border-radius: 14px;
  line-height: 1.7;
}

.content-box h2 {
  margin: 25px 0 10px;
}

.content-box p {
  margin-bottom: 15px;
  color: #dbeafe;
}

.page-offer {
  margin-top: 35px;
  padding: 25px;
  background: #0f172a;
  border-radius: 12px;
}

.seo-links {
  margin-top: 40px;
}

.seo-links ul {
  list-style: none;
  margin-top: 10px;
}

.seo-links li {
  margin-bottom: 8px;
}

.seo-links a {
  color: #60a5fa;
  text-decoration: none;
}

.seo-links a:hover {
  text-decoration: underline;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.link-card {
  display: block;
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
  border: 1px solid #334155;
}

.link-card:hover {
  transform: translateY(-5px);
  background: #334155;
}

@media (max-width: 900px) {
  .container {
    width: 92%;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero {
    padding: 45px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions a {
    margin-right: 0;
    text-align: center;
    width: 100%;
  }

  .offer-card {
    width: 100%;
    padding: 22px;
  }

  .content-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .content-box {
    padding: 24px 18px;
  }

  .page-hero {
    padding: 45px 0 20px;
  }

  .page-content {
    padding: 20px 0 50px;
  }

  .seo-text h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .site-footer {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .lang-nav a {
    margin: 0 6px;
  }

  .badge {
    font-size: 13px;
  }

  h1 {
    font-size: 27px;
  }

  .hero {
    padding: 35px 0;
  }

  .offer-card h2 {
    font-size: 22px;
  }

  .content-grid article,
  .link-card {
    padding: 18px;
  }

  .seo-section,
  .seo-text {
    padding: 40px 0;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #1e293b;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #334155;
}

.blog-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-card h2 a {
  color: #fff;
  text-decoration: none;
}

.blog-card p {
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 18px;
}

.read-more {
  color: #60a5fa;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card a {
  color: #fff;
  text-decoration: none;
}

.blog-card a:hover {
  color: #60a5fa;
}
.home-blog h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

/* CTA BOX (blog altı teklif alanı) */
.cta-box{
  margin-top:40px;
  padding:25px;
  border-radius:12px;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  border:1px solid rgba(255,255,255,0.08);
  text-align:center;
}

.cta-box p{
  font-size:16px;
  margin-bottom:15px;
  color:#e2e8f0;
}

.cta-box .btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:8px;
  background:#22c55e;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.cta-box .btn:hover{
  background:#16a34a;
}

/* BLOG GRID FIX */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* BLOG CARD */
.blog-card{
  padding:20px;
  border-radius:12px;
  background:#1e293b;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.3s;
}

.blog-card:hover{
  transform:translateY(-4px);
  border-color:#22c55e;
}

.blog-card h3{
  font-size:16px;
  margin-bottom:10px;
}

.blog-card p{
  font-size:14px;
  color:#94a3b8;
}

/* SEO NOTE (rusça yazı hizalama fix) */
.seo-note{
  margin-top:20px;
  text-align:center;
  color:#94a3b8;
  font-size:14px;
}

/* OFFER FORM PREMIUM */
.offer-card{
  background:#1e293b;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:32px;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.offer-card h2{
  font-size:26px;
  margin-bottom:10px;
}

.offer-card p{
  color:#cbd5e1;
  margin-bottom:18px;
}

.price-info{
  display:inline-block;
  background:rgba(34,197,94,0.12);
  border:1px solid rgba(34,197,94,0.35);
  color:#86efac !important;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
}

.offer-card form{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.offer-card input,
.offer-card textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:#0f172a;
  color:#fff;
  outline:none;
}

.offer-card textarea{
  min-height:110px;
  resize:vertical;
}

.offer-card input:focus,
.offer-card textarea:focus{
  border-color:#22c55e;
}

.offer-card button{
  padding:15px;
  border:0;
  border-radius:10px;
  background:#22c55e;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.offer-card button:hover{
  background:#16a34a;
}
.urgency{
  margin-top:10px;
  color:#f87171;
  font-size:13px;
  font-weight:600;
}

.trust{
  color:#94a3b8;
  font-size:13px;
  margin-bottom:10px;
}

body{
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.15), transparent 35%),
    radial-gradient(circle at top right, rgba(34,197,94,.10), transparent 30%),
    #081225;
}

/* HERO */
.hero{
  position:relative;
  padding:120px 0 90px;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(59,130,246,.12);
  filter:blur(120px);
  top:-250px;
  left:-150px;
  border-radius:50%;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:24px;
  max-width:760px;
  font-weight:800;
  letter-spacing:-2px;
}

.lead{
  font-size:19px;
  line-height:1.8;
  max-width:700px;
  color:#cbd5e1;
}

.badge{
  background:linear-gradient(135deg,#ef4444,#dc2626);
  border-radius:999px;
  padding:10px 18px;
  font-weight:700;
  box-shadow:0 10px 30px rgba(239,68,68,.25);
}

/* BUTTONS */

.hero-actions{
  margin-top:35px;
  display:flex;
  gap:14px;
}

.btn{
  transition:.25s;
}

.btn.primary{
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.btn.primary:hover{
  transform:translateY(-3px);
}

.btn.whatsapp{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  box-shadow:0 10px 25px rgba(34,197,94,.25);
}

.btn.whatsapp:hover{
  transform:translateY(-3px);
}

/* SECTION TITLE */

.seo-section h2,
.home-blog h2,
.seo-text h2{
  font-size:42px;
  margin-bottom:22px;
  line-height:1.15;
  letter-spacing:-1px;
}

/* CARDS */

.content-grid article,
.blog-card,
.link-card{
  background:rgba(30,41,59,.72);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.06);
  transition:.25s;
}

.content-grid article:hover,
.blog-card:hover,
.link-card:hover{
  transform:translateY(-6px);
  border-color:#3b82f6;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* BLOG SECTION */

.home-blog{
  padding:80px 0;
}

.blog-card{
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.blog-card h3{
  font-size:22px;
  line-height:1.35;
}

.blog-card p{
  margin-top:14px;
  line-height:1.7;
  font-size:15px;
}

.blog-card a:hover{
  color:#60a5fa;
}

/* CTA */

.cta-box{
  margin-top:50px;
  padding:40px;
  border-radius:24px;
  background:
    linear-gradient(135deg,
      rgba(37,99,235,.20),
      rgba(34,197,94,.15)
    );
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}

.cta-box p{
  font-size:22px;
  font-weight:700;
}

/* OFFER CARD */

.offer-card{
  position:relative;
  overflow:hidden;
}

.offer-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.08),
      transparent,
      rgba(34,197,94,.06)
    );
  pointer-events:none;
}

/* SEO TEXT */

.seo-text{
  padding:90px 0;
}

.seo-text p{
  font-size:18px;
  line-height:1.9;
  max-width:950px;
}

/* FOOTER */

.site-footer{
  margin-top:80px;
  padding:35px 0;
  background:#08111f;
}

/* MOBILE */

@media(max-width:900px){

  .hero{
    padding:70px 0 40px;
  }

  .hero-content h1{
    font-size:42px;
    line-height:1.1;
  }

  .lead{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
    text-align:center;
  }

  .seo-section h2,
  .home-blog h2,
  .seo-text h2{
    font-size:30px;
  }

  .cta-box{
    padding:28px;
  }

}
html, body{
  width:100%;
  overflow-x:hidden;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(8,18,37,.92);
  backdrop-filter:blur(14px);
}

.header-inner{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:28px;
  align-items:center;
}

.main-nav{
  display:flex;
  gap:18px;
}

.main-nav a,
.lang-nav a{
  color:#cbd5e1;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.main-nav a:hover,
.lang-nav a:hover,
.lang-nav a.active{
  color:#60a5fa;
}

.lux-hero{
  padding:90px 0 80px;
  position:relative;
}

.lux-hero .hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(340px,430px);
  gap:70px;
  align-items:center;
}

.hero-content{
  min-width:0;
}

.hero-content h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.05;
  max-width:760px;
  word-break:normal;
}

.lead{
  max-width:700px;
}

.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}

.trust-strip span{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#dbeafe;
  padding:9px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.offer-card{
  width:100%;
  max-width:430px;
  justify-self:end;
}

.section-head{
  max-width:820px;
  margin-bottom:30px;
}

.section-head span{
  color:#60a5fa;
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
}

.section-head p{
  color:#94a3b8;
  line-height:1.7;
}

.split-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.faq-section{
  padding:80px 0;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.faq-grid details{
  background:#1e293b;
  border:1px solid #334155;
  border-radius:16px;
  padding:20px;
}

.faq-grid summary{
  cursor:pointer;
  font-weight:800;
}

.faq-grid p{
  margin-top:12px;
  color:#cbd5e1;
  line-height:1.7;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.footer-inner a{
  color:#60a5fa;
  text-decoration:none;
  font-weight:800;
}

@media(max-width:900px){
  .header-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .main-nav,
  .lang-nav{
    justify-content:center;
  }

  .lux-hero{
    padding:50px 0;
  }

  .lux-hero .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .offer-card{
    justify-self:stretch;
    max-width:none;
  }

  .split-info,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }
}
.home-blog{
  overflow:hidden;
}

.premium-blog-card{
  overflow:hidden;
  min-width:0;
}

.blog-image{
  display:block;
  width:100%;
  height:220px;
  overflow:hidden;
  border-radius:14px;
}

.blog-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.blog-body{
  padding-top:18px;
}

.blog-card{
  min-width:0;
}

.blog-card h3,
.blog-card p{
  overflow-wrap:anywhere;
}

@media(max-width:900px){
  .blog-image{
    height:210px;
  }
}
.related-posts{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px;
}

.related-card{
    background:#162338;
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-4px);
    border-color:#2563eb;
}

.related-card a{
    text-decoration:none;
    color:#fff;
    display:block;
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    background:#0f172a;
}

.related-card-content{
    padding:22px;
}

.related-card h3{
    font-size:28px;
    line-height:1.4;
    margin-bottom:14px;
    color:#fff;
}

.related-card p{
    color:#cbd5e1;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:900px){

    .related-posts{
        grid-template-columns:1fr;
    }

    .related-card img{
        height:200px;
    }

}
.related-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:24px !important;
    align-items:stretch;
}

.related-card{
    width:100% !important;
    min-width:0 !important;
    display:flex;
    flex-direction:column;
}

.related-image{
    width:100%;
    height:220px !important;
    display:block;
    overflow:hidden;
    border-radius:18px 18px 0 0;
}

.related-image img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block;
}

.related-body{
    padding:22px !important;
    flex:1;
}

.related-body h3{
    font-size:26px !important;
    line-height:1.45 !important;
    margin-bottom:12px !important;
    word-break:break-word;
}

.related-body p{
    font-size:15px !important;
    line-height:1.7 !important;
}

@media(max-width:900px){

    .related-grid{
        grid-template-columns:1fr !important;
    }

}
.related-posts{
  display:block !important;
  width:100% !important;
  margin-top:70px !important;
}

.related-posts h2{
  display:block !important;
  width:100% !important;
  margin-bottom:28px !important;
  font-size:32px !important;
}

.related-grid{
  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:26px !important;
  width:100% !important;
}

.related-card{
  width:100% !important;
  min-width:0 !important;
  background:#162338 !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:20px !important;
  overflow:hidden !important;
}

.related-image{
  display:block !important;
  width:100% !important;
  height:210px !important;
  overflow:hidden !important;
}

.related-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.related-body{
  padding:22px !important;
}

.related-body h3{
  font-size:21px !important;
  line-height:1.35 !important;
  margin:0 0 12px !important;
  word-break:normal !important;
  overflow-wrap:break-word !important;
}

.related-body p{
  font-size:15px !important;
  line-height:1.7 !important;
  color:#cbd5e1 !important;
}

@media(max-width:900px){
  .related-grid{
    grid-template-columns:1fr !important;
  }
}