*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
}
:root{
/* ===== BRAND COLORS ===== */
--dark-color:#4b677a ; 
--text-color: #ff6b5a; 
--light-text: #e5e7eb;


/* ===== BACKGROUND COLORS ===== */
--bg-main: #ff8b5c;
--bg-gradient-start: #eef5ff;
--bg-gradient-end: #ffffff;
--transition:0.8s ease;
}

.bw-hero{
  padding:80px 6%;
  background:
    linear-gradient(0deg, rgba(255,255,255,.95), rgba(255,255,255,.95)),
    url("images/grid-bg.svg");
  background-size:cover;
}

.bw-wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.bw-text h1{
  font-size:44px;
  line-height:1.25;
  color:#0b2540;
  margin-bottom:20px;
}

.bw-text h1 span{
  color:var(--text-color);
}

.bw-sub{
  font-size:18px;
  margin-bottom:12px;
  color:#111;
}

.bw-text p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:12px;
}

.bw-points{
  margin:20px 0 30px;
  padding:0;
  list-style:none;
}

.bw-points li{
  padding-left:28px;
  margin-bottom:10px;
  position:relative;
  font-size:15px;
}

.bw-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--text-color);
  font-weight:600;
}

.bw-actions{
  display:flex;
  gap:20px;
  align-items:center;
}
.bw-visual img{
  width:100%;
  max-width:420px;
  display:block;
  margin-left:auto;
}

/* BUTTONS */
.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  align-items:center;
}
.btn-link{
  font-weight:600;
  color:#0b2b40;
  text-decoration:underline;
}
/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .bw-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .bw-visual img{
    margin:40px auto 0;
  }

  .bw-actions{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* ===== BUTTON ====== */
.btn-primary{
  padding:14px 30px;
  border-radius:30px;
  border:2px solid #ff6b5a;
  background:#fff;
  color:#ff6b5a;
  font-weight:600;
  cursor:pointer;
}

/* ====== pop frombutton ======*/
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

/* ====== MODAL BOX ====== */
.modal-box{
  background:#fff;
  width:750px;
  border-radius:8px;
  overflow:hidden;
}

/* Header */
.modal-header{
  padding:16px 20px;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
}

.modal-header span{
  cursor:pointer;
  font-size:22px;
}

/* Body */
.modal-body{
  background:#FEEBE7;
  padding:20px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  font-size:14px;
  margin-bottom:4px;
  display:block;
}

input, textarea{
  width:100%;
  padding:10px;
  border:1px solid #ff6b5a;
  border-radius:3px;
}

textarea{
  grid-column:1 / -1;
  height:90px;
  resize:none;
}

/* Footer */
.modal-footer{
  padding:15px;
}

.send-btn{
  width:100%;
  padding:14px;
  background:#ff6b5a;
  color:#fff;
  border:none;
  font-size:16px;
  border-radius:4px;
  cursor:pointer;
}

/*========== RESPONSIVE ======== */
@media(max-width:800px){
  .modal-box{
    width:95%;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
}
/* ======================sec-2========================= */
.mailfeat-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.mailfeat-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.mailfeat-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mailfeat-card {
  background: #FEEBE7;
  padding: 28px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.mailfeat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.mailfeat-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.mailfeat-card ul {
  padding-left: 20px;
}

.mailfeat-card li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #333;
  list-style: none;
}

/* Center Card */
.mailfeat-center {
  grid-column: span 2;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .mailfeat-grid {
    grid-template-columns: 1fr;
  }

  .mailfeat-center {
    grid-column: span 1;
  }

  .mailfeat-title {
    font-size: 28px;
  }
}
/* ====================sec-3 ========================== */
.kfmail-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ff6b5a, #ff6b5a);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.kfmail-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.kfmail-layout {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.kfmail-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kfmail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kfmail-icon {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.kfmail-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.kfmail-item p {
  font-size: 14.5px;
  color: #e0ecff;
  line-height: 1.6;
}

.kfmail-imagebox {
  flex: 1;
  display: flex;
  justify-content: center;
}

.kfmail-imagebox img {
  max-width: 360px;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .kfmail-layout {
    flex-direction: column;
    text-align: center;
  }

  .kfmail-item {
    justify-content: center;
  }
}
/* ======================sec-4 =================== */
.aprice-section {
  padding: 90px 20px;
  background: #f4f9ff;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.aprice-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aprice-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.aprice-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.aprice-card {
  background:#FAA18F ;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s;
}

.aprice-card:hover {
  transform: translateY(-6px);
}

.aprice-plan {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.aprice-price {
  font-size: 34px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 25px;
}

.aprice-price span {
  font-size: 14px;
  color: var(--light-text);
}

.aprice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.aprice-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.aprice-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid #F4320B;
  color: var(--light-text);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.aprice-btn:hover {
  background: #F87C63;
  color: #fff;
}

/* Popular Plan */
.popular-plan {
  border: 2px solid #F4320B;
  transform: scale(1.05);
}

.aprice-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F87C63;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 20px;
}

.highlight-btn {
  background: #F87C63;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .aprice-grid {
    grid-template-columns: 1fr;
  }

  .popular-plan {
    transform: scale(1);
  }
}
/* ========================== sec-5 =================== */
    
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
        }
        
        h1 {
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 25px 20px;
            text-align: left;
            border-bottom: 1px solid #FCC6BB;
        }
        
        .pricing-table th {
            background-color: var(--bg-main);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        
        .pricing-table th:nth-child(2) {
            background-color: #F54927;
        }
        
        .pricing-table th:nth-child(3) {
            background-color: #F87C63;
        }
        
        .pricing-table th:first-child {
            border-top-left-radius: 12px;
        }
        
        .pricing-table th:last-child {
            border-top-right-radius: 12px;
        }
        
        .pricing-table tr:last-child td {
            border-bottom: none;
        }
        
        .email-volume {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1.2rem;
        }
        
        .price {
            font-weight: 800;
            font-size: 1.8rem;
            color: #2c3e50;
        }
        
        .features-list {
            list-style-type: none;
        }
        
        .features-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 24px;
        }
        
        .features-list li:before {
            content: "✓";
            color: #F54927;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .plan-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .standard-badge {
            background-color: #e8f4fc;
            color: #2980b9;
        }
        
        .advanced-badge {
            background-color: #e8f6f3;
            color: #27ae60;
        }
        
        .per-email {
            color: #7f8c8d;
            font-size: 0.95rem;
            font-weight: normal;
            margin-top: 5px;
            display: block;
        }
        
        .custom-pricing {
            font-weight: 700;
            color: #e74c3c;
            font-size: 1.3rem;
        }
        
        .footer-note {
            text-align: center;
            color: #7f8c8d;
            font-style: italic;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
            
            .pricing-table th, 
            .pricing-table td {
                padding: 20px 15px;
            }
            
            h1 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-table th, 
            .pricing-table td {
                padding: 15px 12px;
                font-size: 0.95rem;
            }
            
            .price {
                font-size: 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            header {
                padding: 10px;
                margin-bottom: 25px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .pricing-table th, 
            .pricing-table td {
                padding: 12px 10px;
                font-size: 0.9rem;
            }
            
            .price {
                font-size: 1.3rem;
            }
        }
        
        /* Decorative elements */
        .highlight-row {
            background-color: #f9fbfd;
        }
        
        .section-title {
            text-align: center;
            margin: 30px 0 15px;
            color: #2c3e50;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .currency {
            font-size: 1.2rem;
            vertical-align: top;
        }
/* =================sec-6 ====================== */
.fct-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.fct-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.fct-table-wrap {
  max-width: 1000px;
  margin: auto;
  overflow-x: auto;
}

.fct-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.fct-table thead {
  background: var(--bg-main);
  color: #fff;
}

.fct-table th,
.fct-table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 15px;
}

.fct-table th:first-child,
.fct-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.fct-table tbody tr:nth-child(even) {
  background: #FEEBE7;
}

/* ✅ Mobile Responsive – Card Style */
@media (max-width: 768px) {
  .fct-table,
  .fct-table thead,
  .fct-table tbody,
  .fct-table th,
  .fct-table td,
  .fct-table tr {
    display: block;
    width: 100%;
  }

  .fct-table thead {
    display: none;
  }

  .fct-table tr {
    margin-bottom: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
  }

  .fct-table td {
    text-align: right;
    padding: 12px 16px;
    position: relative;
  }

  .fct-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: #0a5aa6;
    text-align: left;
  }

  .fct-table td:first-child {
    background: #f0f6ff;
    font-weight: 700;
  }
}
/* ========================sec-7 ====================== */
 /* ================ cts-sms=========== */
 .cta-sms{
  /* background:linear-gradient(135deg,#f4fcff,#e8f7ff); */
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding:80px 20px;
}

.cta-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  align-items:center;
  gap:50px;
}

/* LEFT TEXT */
.cta-content h2{
  font-size:40px;
  font-weight:700;
  color:#000;
  margin-bottom:20px;
}

.cta-content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  max-width:550px;
}

/* RIGHT CALL BOX */
.cta-call{
  display:flex;
  justify-content:center;
}

.call-bubble{
  background:#0b4ea2;
  color:#fff;
  border-radius:22px;
  padding:25px 30px 25px 70px;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.call-bubble::after{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50px;
  border-width:20px 18px 0;
  border-style:solid;
  border-color:#0b4ea2 transparent transparent;
}

/* ICON */
.calling-icon{
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  width:65px;
  height:65px;
  background:#ff8b5c;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* TEXT */
.call-text span{
  display:block;
  font-size:22px;
  font-weight:600;
}

.call-text strong{
  display:block;
  margin-top:6px;
  background:#ff6b5a;
  color:#000;
  padding:8px 14px;
  border-radius:10px;
  font-size:18px;
  width:max-content;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .cta-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-content p{
    margin:auto;
  }

  .call-bubble{
    padding:30px 25px 30px 25px;
  }

  .call-icon{
    position:static;
    transform:none;
    margin:0 auto 15px;
  }

  .call-bubble::after{
    display:none;
  }

  .call-text strong{
    margin:auto;
  }
}

@media(max-width:480px){
  .cta-content h2{
    font-size:28px;
  }

  .call-text span{
    font-size:18px;
  }

  .call-text strong{
    font-size:16px;
  }
}
