

.hosting-devops-main {
    background: #0a0e27;
    color: #e2e8f0;
    overflow-x: hidden;
}


/* ===================================
   HERO SPLIT SECTION
   =================================== */

.hero-split {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

/* Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
    z-index: 0;
}

.grid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #6366f1 50%, transparent 100%);
    animation: gridMove 8s linear infinite;
}

.grid-line:nth-child(1) { left: 10%; animation-delay: 0s; }
.grid-line:nth-child(2) { left: 30%; animation-delay: 1s; }
.grid-line:nth-child(3) { left: 50%; animation-delay: 2s; }
.grid-line:nth-child(4) { left: 70%; animation-delay: 3s; }
.grid-line:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes gridMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Hero Content */
.hero-content-split {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Badge */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.4); }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
}

/* Heading */
.hero-heading-new {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #f8fafc;
    margin-bottom: 24px;
}

.heading-gradient {
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg); }
}

/* Typing Text */
.hero-typing-wrapper {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.typing-prefix {
    font-weight: 400;
}

.typing-text {
    font-weight: 700;
    color: #6366f1;
    min-width: 200px;
}

.typing-cursor {
    font-weight: 100;
    color: #6366f1;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Description */
.hero-description-new {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.pill:hover {
    transform: translateY(-2px);
}

.pill-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pill-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pill-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* CTA Buttons */
.hero-cta-new {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-gradient-new {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-gradient-new:hover::before {
    left: 100%;
}

.btn-gradient-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-gradient-new:hover .btn-arrow {
    transform: translateX(-4px);
}

.btn-outline-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #e2e8f0;
    border: 2px solid rgba(226, 232, 240, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-new:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-3px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 24px;
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 24px;
    font-weight: 900;
    color: #f8fafc;
}

.trust-label {
    font-size: 13px;
    color: #94a3b8;
}


/* ===================================
   HERO VISUAL - TERMINAL
   =================================== */

.hero-visual-split {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Terminal Window */
.terminal-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.terminal-header {
    background: #0f172a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ef4444; }
.btn-minimize { background: #f59e0b; }
.btn-maximize { background: #10b981; }

.terminal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

.terminal-body {
    padding: 24px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.terminal-prompt {
    color: #10b981;
    font-weight: 700;
}

.terminal-command {
    color: #e2e8f0;
}

.typing-effect {
    animation: typing 3s steps(30) infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #6366f1;
}

@keyframes typing {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.terminal-output {
    margin: 16px 0 16px 36px;
}

.output-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.status-running {
    color: #10b981;
    animation: pulse 1.5s ease-in-out infinite;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-right: auto;
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Floating Metric Cards */
.metric-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatMetric 4s ease-in-out infinite;
}

@keyframes floatMetric {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

/* CPU Card */
.metric-cpu {
    top: 8%;
    right: -12%;
    width: 200px;
    animation-delay: 0s;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.metric-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.value-number {
    font-size: 36px;
    font-weight: 900;
    color: #f8fafc;
}

.value-unit {
    font-size: 18px;
    color: #94a3b8;
    margin-right: 4px;
}

.metric-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.chart-line {
    flex: 1;
    height: 70%;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 4px;
    animation: chartPulse 2s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { height: 70%; }
    50% { height: 90%; }
}

/* Uptime Card */
.metric-uptime {
    bottom: 30%;
    left: -10%;
    width: 180px;
    animation-delay: 1s;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.uptime-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.uptime-days {
    font-size: 32px;
    font-weight: 900;
    color: #10b981;
}

.uptime-label {
    font-size: 14px;
    color: #94a3b8;
}

.uptime-progress {
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.uptime-bar {
    width: 99.9%;
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    animation: progressFill 3s ease-out;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 99.9%; }
}

/* Deploy Card */
.metric-deploy {
    bottom: 5%;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    animation-delay: 2s;
}

.deploy-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.deploy-status {
    font-size: 14px;
    font-weight: 700;
    color: #f8fafc;
}

.deploy-time {
    font-size: 12px;
    color: #94a3b8;
}

.deploy-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-right: auto;
}

/* Tech Badges */
.tech-badges {
    position: absolute;
    top: 50%;
    left: -8%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: floatBadges 5s ease-in-out infinite;
}

@keyframes floatBadges {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.tech-badge {
    width: 56px;
    height: 56px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #6366f1;
}

.tech-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}


/* ===================================
   SERVICES GRID SECTION
   =================================== */

.services-grid-new {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
}

/* Section Header */
.section-header-new {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title-new {
    font-size: 48px;
    font-weight: 900;
    color: #f8fafc;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

/* Service Card */
.service-card-new {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card-new:hover::before {
    transform: translateX(100%);
}

.service-card-new:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Card Icon */
.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.card-shared .card-icon { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.card-vps .card-icon { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.card-cloud .card-icon { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.card-devops .card-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.card-db .card-icon { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.card-security .card-icon { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

/* Icon Badge */
.icon-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.badge-purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.badge-orange {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Card Content */
.card-title-new {
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 12px;
}

.card-desc-new {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 24px;
}

/* Card Features */
.card-features-new {
    list-style: none;
    margin-bottom: 24px;
}

.card-features-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.card-features-new i {
    color: #10b981;
    font-size: 16px;
}

/* Card Footer */
.card-footer-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 28px;
    font-weight: 900;
    color: #f8fafc;
}

.price-currency {
    font-size: 16px;
    color: #94a3b8;
}

.price-period {
    font-size: 14px;
    color: #64748b;
}

.card-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-btn-new:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}


/* ===================================
   COMPARISON TABLE SECTION
   =================================== */

.comparison-section-new {
    padding: 120px 0;
    background: #0a0e27;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.comparison-table-new {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-new thead tr {
    background: rgba(15, 23, 42, 0.8);
}

.comparison-table-new th,
.comparison-table-new td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.feature-column {
    text-align: right !important;
    font-weight: 600;
    color: #f8fafc;
}

.plan-column {
    position: relative;
}

.popular-column {
    background: rgba(99, 102, 241, 0.05);
    border-left: 1px solid rgba(99, 102, 241, 0.3);
    border-right: 1px solid rgba(99, 102, 241, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.plan-header {
    padding: 16px 0;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 32px;
    font-weight: 900;
    color: #6366f1;
}

.plan-price .currency {
    font-size: 14px;
    color: #94a3b8;
}

.comparison-table-new tbody td {
    color: #cbd5e1;
    font-size: 15px;
}

.feature-name {
    font-weight: 600;
    color: #e2e8f0;
}

.text-success {
    color: #10b981;
    font-size: 20px;
}

.table-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.table-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.table-btn-popular {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.table-btn-popular:hover {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}


/* ===================================
   CTA SECTION
   =================================== */

.cta-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.cta-box {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 32px;
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #6366f1;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .hero-heading-new {
        font-size: 48px;
    }
    
    .hero-typing-wrapper {
        font-size: 20px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-heading-new {
        font-size: 36px;
    }
    
    .section-title-new {
        font-size: 32px;
    }
    
    .metric-card {
        display: none;
    }
    
    .tech-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 24px;
    }
}



