/* ============================================
   RESPONSIVE CSS ONLY
   Add this to your existing CSS file
   ============================================ */

/* ===========================
   LAPTOPS & DESKTOPS (1200px+)
   =========================== */
@media (min-width: 1200px) {
    .vt-hero {
        padding: 100px 24px 0;
    }

    .vt-window {
        padding: 24px 28px 32px;
    }

    .vt-cards {
        gap: 16px;
    }

    .pricing-grid {
        gap: 40px;
    }
}

/* ===========================
   LARGE TABLETS (992px - 1199px)
   =========================== */
@media (max-width: 1199px) {
    .vt-hero {
        padding: 80px 20px 0;
    }

    .vt-headline {
        font-size: clamp(40px, 7vw, 70px);
    }

    .vt-window {
        padding: 18px 20px 24px;
        border-radius: 28px;
    }

    .vt-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 30px;
    }

    .featured {
        transform: scale(1);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-watermark {
        font-size: 160px;
    }
}

/* ===========================
   TABLETS (768px - 991px)
   =========================== */
@media (max-width: 991px) {
    /* Navbar */
    .navbar {
        width: 95%;
        height: 52px;
        padding: 0 6px 0 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Hero */
    .vt-hero {
        padding: 70px 16px 0;
    }

    .vt-headline {
        font-size: clamp(36px, 6vw, 56px);
    }

    .vt-sub {
        font-size: 15px;
    }

    .vt-cta {
        padding: 14px 24px;
        font-size: 14px;
    }

    .vt-window {
        padding: 16px 18px 20px;
        border-radius: 24px;
    }

    .vt-window-wrap {
        max-width: 700px;
    }

    .vt-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .vt-tab {
        font-size: 12px;
        padding: 7px 12px;
    }

    /* Clipboard Section */
    .clipboard-section {
        padding: 130px 16px;
    }

    .clipboard-content h2 {
        font-size: clamp(40px, 6vw, 64px);
    }

    .clipboard-content p {
        font-size: 22px;
    }

    /* Code Showcase */
    .code-showcase {
        padding: 100px 16px;
    }

    .code-heading h2 {
        font-size: clamp(32px, 5vw, 52px);
    }

    pre {
        padding: 24px;
    }

    code {
        font-size: 15px;
    }

    /* Testimonials */
    .dev-testimonials {
        padding: 100px 16px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .code-card pre {
        padding: 24px;
    }

    .code-card code {
        font-size: 15px;
    }

    /* Portfolio */
    .portfolio {
        padding: 100px 0;
    }

    .portfolio-heading h2 {
        font-size: 44px;
    }

    .project {
        width: 320px;
        height: 220px;
        margin: 0 12px;
    }

    /* Process */
    .process-section {
        padding: 100px 16px;
    }

    .process-header h2 {
        font-size: 42px;
    }

    .step {
        gap: 24px;
        margin-bottom: 50px;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .card {
        padding: 24px;
    }

    .card h3 {
        font-size: 24px;
    }

    /* Workflow */
    .workflow {
        padding: 100px 16px;
    }

    .workflow-title h2 {
        font-size: 42px;
    }

    .flow-card {
        width: 100%;
        max-width: 500px;
        padding: 28px;
    }

    .flow-card h3 {
        font-size: 24px;
    }

    /* Pricing */
    .pricing {
        padding: 100px 16px 180px;
    }

    .pricing-head h2 {
        font-size: clamp(36px, 5vw, 56px);
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
        gap: 24px;
    }

    .price-card {
        padding: 30px;
    }

    .price {
        font-size: 44px;
    }

    /* FAQ */
    .faq-section {
        padding: 100px 16px;
    }

    .faq-header h2 {
        font-size: 42px;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 16px;
    }

    /* Contact */
    .contact-section {
        padding: 100px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }

    .contact-info h2 {
        font-size: clamp(40px, 5vw, 60px);
    }

    .contact-info p {
        font-size: 18px;
    }

    .contact-card {
        padding: 28px;
    }

    .floating-scene {
        display: none;
    }

    /* Footer */
    .vt-footer {
        padding: 80px 5% 120px;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-brand h2 {
        font-size: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-watermark {
        font-size: 120px;
        bottom: -30px;
    }
}

/* ===========================
   MOBILE (481px - 767px)
   =========================== */
@media (max-width: 767px) {
    /* Navbar */
    .navbar {
        top: 12px;
        width: calc(100% - 16px);
        height: 48px;
        padding: 0 4px 0 10px;
        border-radius: 14px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-mark {
        width: 24px;
        height: 24px;
    }

    .nav-links,
    .navbar .nav-cta {
        display: none;
    }

    .menu-btn {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .menu-btn svg {
        width: 18px;
        height: 18px;
    }

    .mobile-overlay {
        width: calc(100% - 16px);
        border-radius: 0 0 18px 18px;
        padding: 14px 16px 18px;
    }

    .mobile-links a {
        font-size: 16px;
        padding: 10px 4px;
    }

    .mobile-overlay .nav-cta {
        padding: 12px;
        font-size: 14px;
    }

    /* Hero */
    .vt-hero {
        padding: 60px 12px 0;
    }

    .vt-eyebrow {
        font-size: 14px;
        gap: 6px;
        margin-bottom: 14px;
    }

    .vt-headline {
        font-size: clamp(30px, 8vw, 42px);
        margin-bottom: 18px;
    }

    .vt-script {
        font-size: 1em;
    }

    .vt-sub {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 22px;
        padding: 0 8px;
    }

    .vt-cta {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .vt-disclaimers {
        font-size: 11px;
        gap: 10px 16px;
        margin: 16px 0 40px;
    }

    .vt-window-wrap {
        max-width: 100%;
    }

    .vt-window {
        padding: 12px 14px 18px;
        border-radius: 18px;
        margin-top: 40px;
    }

    .vt-window-bar {
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .vt-search {
        font-size: 12px;
        gap: 6px;
    }

    .vt-window-icons {
        gap: 6px;
    }

    .vt-icon-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .vt-tabs {
        gap: 5px;
        margin-bottom: 12px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vt-tabs::-webkit-scrollbar {
        display: none;
    }

    .vt-tab {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .vt-tab-add {
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .vt-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vt-card {
        padding: 8px;
        border-radius: 10px;
    }

    .vt-card-text {
        font-size: 10px;
    }

    .vt-card-logo {
        font-size: 14px;
    }

    .vt-card-tag {
        font-size: 8px;
        padding: 3px 6px;
        left: 6px;
        bottom: 6px;
        gap: 3px;
    }

    .vt-dot {
        width: 5px;
        height: 5px;
    }

    /* Showcase */
    .vt-showcase {
        min-height: 500px;
    }

    .vt-statusbar {
        top: 12px;
        right: 12px;
        gap: 10px;
    }

    .vt-clock {
        font-size: 11px;
    }

    .vt-window-wrap-full {
        margin-top: 40px;
        padding: 0 12px;
        transform: translateY(-80px);
    }

    .vt-window-topline {
        padding-bottom: 10px;
    }

    .vt-window-brand {
        font-size: 11px;
        gap: 6px;
    }

    /* Clipboard */
    .clipboard-section {
        padding: 100px 12px;
    }

    .award-row {
        gap: 12px;
        margin-bottom: 60px;
    }

    .award {
        width: 68px;
        height: 68px;
    }

    .award img {
        width: 40px;
    }

    .clipboard-content h2 {
        font-size: clamp(32px, 7vw, 44px);
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .clipboard-content p {
        font-size: 18px;
        padding: 0 8px;
    }

    .feature-pills {
        margin-top: 40px;
        gap: 10px;
    }

    .feature-pills span {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Code Showcase */
    .code-showcase {
        padding: 80px 12px;
    }

    .code-heading {
        margin-bottom: 40px;
    }

    .code-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .code-heading h2 {
        font-size: clamp(28px, 6vw, 38px);
        letter-spacing: -1px;
    }

    .code-heading p {
        font-size: 16px;
    }

    .editor {
        border-radius: 16px;
    }

    .editor-top {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .dots span {
        width: 10px;
        height: 10px;
    }

    .filename {
        font-size: 12px;
    }

    pre {
        padding: 16px;
        font-size: 13px;
    }

    code {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Testimonials */
    .dev-testimonials {
        padding: 80px 12px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .section-heading h2 {
        font-size: 32px;
        margin: 14px 0;
    }

    .section-heading p {
        font-size: 16px;
    }

    .code-card {
        border-radius: 16px;
    }

    .code-card pre {
        padding: 16px;
    }

    .code-card code {
        font-size: 13px;
        line-height: 1.7;
    }

    .swiper {
        max-width: 100%;
    }

    .swiper-pagination {
        margin-top: 24px;
    }

    /* Portfolio */
    .portfolio {
        padding: 80px 0;
    }

    .portfolio-heading {
        padding: 0 12px 40px;
    }

    .portfolio-heading span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .portfolio-heading h2 {
        font-size: 32px;
        margin: 16px 0 12px;
    }

    .portfolio-heading p {
        font-size: 16px;
    }

    .project {
        width: 240px;
        height: 170px;
        margin: 0 8px;
        border-radius: 18px;
    }

    /* Process */
    .process-section {
        padding: 80px 12px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .process-header h2 {
        font-size: 32px;
        margin: 16px 0 12px;
        letter-spacing: -1px;
    }

    .process-header p {
        font-size: 16px;
    }

    .line {
        left: 28px;
    }

    .step {
        gap: 16px;
        margin-bottom: 36px;
        flex-direction: column;
        align-items: flex-start;
    }

    .number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .card {
        padding: 18px;
        border-radius: 18px;
        width: 100%;
    }

    .card h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .card p {
        font-size: 15px;
    }

    /* Workflow */
    .workflow {
        padding: 80px 12px;
    }

    .workflow-title {
        margin-bottom: 50px;
    }

    .workflow-title span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .workflow-title h2 {
        font-size: 32px;
        margin: 16px 0;
    }

    .workflow-title p {
        font-size: 16px;
    }

    .flow-card {
        padding: 20px;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
    }

    .flow-card.left,
    .flow-card.right {
        margin: 0;
    }

    .icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .flow-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .flow-card p {
        font-size: 15px;
    }

    .connector {
        height: 50px;
        margin: 4px auto;
    }

    .connector::before {
        width: 10px;
        height: 10px;
    }

    /* Pricing */
    .pricing {
        padding: 80px 12px 140px;
    }

    .pricing-head {
        margin-bottom: 40px;
    }

    .pricing-head span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .pricing-head h2 {
        font-size: clamp(28px, 6vw, 38px);
        margin: 16px 0 12px;
    }

    .pricing-head p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
        margin-top: 40px;
    }

    .price-card {
        padding: 24px;
        border-radius: 22px;
    }

    .popular {
        font-size: 12px;
        padding: 6px 14px;
    }

    .plan {
        font-size: 20px;
    }

    .price {
        font-size: 38px;
        margin: 10px 0;
    }

    .price-card ul {
        margin: 20px 0;
    }

    .price-card li {
        font-size: 14px;
        padding: 8px 0;
    }

    .price-card button {
        padding: 14px;
        font-size: 15px;
        border-radius: 14px;
    }

    .wave {
        height: 200px;
        filter: blur(60px);
    }

    .wave1 {
        bottom: -100px;
    }

    .wave2 {
        bottom: -160px;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 12px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .faq-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 16px;
        gap: 12px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .faq-icon::before {
        width: 12px;
        height: 2px;
    }

    .faq-icon::after {
        width: 2px;
        height: 12px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    /* Contact */
    .contact-section {
        padding: 80px 12px;
    }

    .tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .contact-info h2 {
        font-size: clamp(30px, 6vw, 40px);
        margin: 16px 0;
        letter-spacing: -2px;
    }

    .contact-info p {
        font-size: 16px;
        max-width: 100%;
    }

    .contact-card {
        padding: 20px;
        border-radius: 22px;
    }

    .contact-card input,
    .contact-card textarea {
        padding: 14px;
        font-size: 15px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .contact-card textarea {
        height: 130px;
    }

    .contact-card button {
        padding: 16px;
        font-size: 16px;
        border-radius: 14px;
    }

    .blob {
        width: 300px;
        height: 300px;
        filter: blur(100px);
    }

    .blob-blue {
        left: -100px;
    }

    .blob-purple {
        right: -100px;
    }

    /* Footer */
    .vt-footer {
        padding: 60px 5% 100px;
    }

    .footer-top-radius {
        width: 92%;
        height: 20px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 32px;
    }

    .footer-logo span {
        font-size: 20px;
    }

    .footer-brand h2 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-btn {
        padding: 14px 22px;
        font-size: 14px;
        border-radius: 14px;
    }

    .footer-brand small {
        font-size: 13px;
        margin-top: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-watermark {
        font-size: 60px;
        bottom: -10px;
        letter-spacing: -4px;
    }
}

/* ===========================
   SMALL PHONES (320px - 480px)
   =========================== */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        top: 8px;
        width: calc(100% - 12px);
        height: 44px;
        padding: 0 3px 0 8px;
        border-radius: 12px;
    }

    .logo-text {
        font-size: 12px;
    }

    .logo-mark {
        width: 20px;
        height: 20px;
    }

    .menu-btn {
        width: 32px;
        height: 32px;
    }

    .menu-btn svg {
        width: 16px;
        height: 16px;
    }

    .mobile-overlay {
        width: calc(100% - 12px);
        padding: 12px 14px 16px;
        border-radius: 0 0 14px 14px;
    }

    .mobile-links a {
        font-size: 14px;
        padding: 8px 4px;
    }

    .mobile-overlay .nav-cta {
        padding: 10px;
        font-size: 13px;
    }

    /* Hero */
    .vt-hero {
        padding: 50px 8px 0;
    }

    .vt-eyebrow {
        font-size: 12px;
        gap: 4px;
        margin-bottom: 10px;
    }

    .vt-headline {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 14px;
    }

    .vt-sub {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .vt-cta {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .vt-disclaimers {
        font-size: 10px;
        gap: 6px 12px;
        margin: 12px 0 30px;
    }

    .vt-window {
        padding: 10px 10px 14px;
        border-radius: 14px;
        margin-top: 30px;
    }

    .vt-search {
        font-size: 10px;
        gap: 4px;
    }

    .vt-search svg {
        width: 14px;
        height: 14px;
    }

    .vt-icon-btn {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .vt-tab {
        font-size: 10px;
        padding: 4px 10px;
        gap: 4px;
    }

    .vt-tab b {
        font-size: 10px;
    }

    .vt-tab-add {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .vt-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .vt-card {
        padding: 6px;
        border-radius: 8px;
    }

    .vt-card-text {
        font-size: 9px;
        line-height: 1.3;
    }

    .vt-card-logo {
        font-size: 12px;
    }

    .vt-card-tag {
        font-size: 7px;
        padding: 2px 5px;
        left: 4px;
        bottom: 4px;
        gap: 2px;
    }

    .vt-dot {
        width: 4px;
        height: 4px;
    }

    /* Showcase */
    .vt-showcase {
        min-height: 400px;
    }

    .vt-statusbar {
        top: 8px;
        right: 8px;
        gap: 8px;
    }

    .vt-clock {
        font-size: 10px;
    }

    .vt-window-wrap-full {
        margin-top: 30px;
        padding: 0 8px;
        transform: translateY(-60px);
    }

    .vt-window-topline {
        padding-bottom: 8px;
    }

    .vt-window-brand {
        font-size: 10px;
        gap: 4px;
    }

    .vt-window-brand svg {
        width: 16px;
        height: 16px;
    }

    /* Clipboard */
    .clipboard-section {
        padding: 80px 8px;
    }

    .award-row {
        gap: 10px;
        margin-bottom: 40px;
    }

    .award {
        width: 56px;
        height: 56px;
    }

    .award img {
        width: 32px;
    }

    .clipboard-content h2 {
        font-size: clamp(26px, 6vw, 34px);
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .clipboard-content p {
        font-size: 15px;
        padding: 0 4px;
    }

    .feature-pills {
        margin-top: 30px;
        gap: 8px;
    }

    .feature-pills span {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Code Showcase */
    .code-showcase {
        padding: 60px 8px;
    }

    .code-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .code-heading h2 {
        font-size: clamp(22px, 5vw, 30px);
    }

    .code-heading p {
        font-size: 14px;
    }

    .editor-top {
        padding: 10px 12px;
    }

    .dots span {
        width: 8px;
        height: 8px;
    }

    .filename {
        font-size: 10px;
    }

    pre {
        padding: 12px;
    }

    code {
        font-size: 11px;
        line-height: 1.5;
    }

    /* Testimonials */
    .dev-testimonials {
        padding: 60px 8px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .code-card pre {
        padding: 12px;
    }

    .code-card code {
        font-size: 11px;
        line-height: 1.5;
    }

    /* Portfolio */
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-heading {
        padding: 0 8px 30px;
    }

    .portfolio-heading span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .portfolio-heading h2 {
        font-size: 26px;
    }

    .portfolio-heading p {
        font-size: 14px;
    }

    .project {
        width: 180px;
        height: 130px;
        margin: 0 6px;
        border-radius: 14px;
    }

    /* Process */
    .process-section {
        padding: 60px 8px;
    }

    .process-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .process-header h2 {
        font-size: 26px;
    }

    .process-header p {
        font-size: 14px;
    }

    .line {
        left: 22px;
    }

    .number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .card {
        padding: 14px;
        border-radius: 14px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    /* Workflow */
    .workflow {
        padding: 60px 8px;
    }

    .workflow-title span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .workflow-title h2 {
        font-size: 26px;
    }

    .workflow-title p {
        font-size: 14px;
    }

    .flow-card {
        padding: 16px;
        border-radius: 14px;
    }

    .icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .flow-card h3 {
        font-size: 18px;
    }

    .flow-card p {
        font-size: 14px;
    }

    .connector {
        height: 40px;
    }

    .connector::before {
        width: 8px;
        height: 8px;
    }

    /* Pricing */
    .pricing {
        padding: 60px 8px 100px;
    }

    .pricing-head span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .pricing-head h2 {
        font-size: clamp(22px, 5vw, 30px);
    }

    .pricing-head p {
        font-size: 14px;
    }

    .pricing-grid {
        gap: 16px;
    }

    .price-card {
        padding: 18px;
        border-radius: 18px;
    }

    .plan {
        font-size: 17px;
    }

    .price {
        font-size: 32px;
    }

    .price-card ul {
        margin: 14px 0;
    }

    .price-card li {
        font-size: 13px;
        padding: 6px 0;
    }

    .price-card button {
        padding: 12px;
        font-size: 14px;
        border-radius: 12px;
    }

    .wave {
        height: 150px;
        filter: blur(50px);
    }

    /* FAQ */
    .faq-section {
        padding: 60px 8px;
    }

    .faq-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .faq-header h2 {
        font-size: 26px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
        gap: 10px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon::before {
        width: 10px;
        height: 2px;
    }

    .faq-icon::after {
        width: 2px;
        height: 10px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 8px;
    }

    .tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .contact-info h2 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-card {
        padding: 16px;
        border-radius: 18px;
    }

    .contact-card input,
    .contact-card textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .contact-card textarea {
        height: 100px;
    }

    .contact-card button {
        padding: 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .blob {
        width: 200px;
        height: 200px;
        filter: blur(80px);
    }

    /* Footer */
    .vt-footer {
        padding: 40px 4% 80px;
    }

    .footer-top-radius {
        height: 16px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .footer-logo img {
        width: 28px;
    }

    .footer-logo span {
        font-size: 18px;
    }

    .footer-brand h2 {
        font-size: 26px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-btn {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 12px;
    }

    .footer-brand small {
        font-size: 12px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-links h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-watermark {
        font-size: 40px;
        bottom: -4px;
        letter-spacing: -2px;
    }
}

/* ===========================
   EXTRA SMALL (under 320px)
   =========================== */
@media (max-width: 320px) {
    .navbar {
        height: 40px;
        padding: 0 2px 0 6px;
    }

    .logo-text {
        font-size: 11px;
    }

    .logo-mark {
        width: 18px;
        height: 18px;
    }

    .menu-btn {
        width: 28px;
        height: 28px;
    }

    .vt-headline {
        font-size: 20px;
    }

    .vt-window {
        padding: 8px 6px 10px;
        border-radius: 12px;
    }

    .vt-tab {
        font-size: 9px;
        padding: 3px 8px;
    }

    .vt-cards {
        gap: 4px;
    }

    .vt-card {
        padding: 4px;
    }

    .vt-card-text {
        font-size: 8px;
    }

    .vt-card-logo {
        font-size: 10px;
    }

    .vt-card-tag {
        font-size: 6px;
        padding: 1px 4px;
    }

    .clipboard-content h2 {
        font-size: 22px;
    }

    .clipboard-content p {
        font-size: 13px;
    }

    .feature-pills span {
        padding: 6px 10px;
        font-size: 11px;
    }

    .code-heading h2 {
        font-size: 20px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .price {
        font-size: 28px;
    }

    .footer-brand h2 {
        font-size: 22px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-watermark {
        font-size: 30px;
    }
}

/* ===========================
   LANDSCAPE MOBILE (max-height: 500px)
   =========================== */
@media (max-height: 500px) and (orientation: landscape) {
    .vt-hero {
        padding: 50px 16px 0;
    }

    .vt-headline {
        font-size: clamp(28px, 5vh, 40px);
        margin-bottom: 12px;
    }

    .vt-sub {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .vt-window {
        margin-top: 20px;
        padding: 10px 14px 14px;
    }

    .vt-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .vt-card {
        padding: 6px;
        border-radius: 8px;
    }

    .vt-window-wrap-full {
        transform: translateY(-40px);
    }

    .clipboard-section {
        padding: 60px 16px;
    }

    .clipboard-content h2 {
        font-size: clamp(28px, 5vh, 40px);
    }

    .code-showcase,
    .dev-testimonials,
    .portfolio,
    .process-section,
    .workflow,
    .pricing,
    .faq-section,
    .contact-section {
        padding: 40px 16px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .navbar,
    .menu-btn,
    .mobile-overlay,
    .vt-cta,
    .nav-cta,
    .footer-btn,
    .price-card button,
    .contact-card button,
    .wave,
    .blob,
    .footer-watermark,
    .vt-showcase::after,
    .pricing::after {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .vt-hero {
        background: #fff !important;
        color: #000 !important;
        padding: 40px 20px !important;
    }

    .vt-window,
    .code-card,
    .editor,
    .price-card,
    .contact-card,
    .flow-card,
    .card {
        background: #f5f5f5 !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        backdrop-filter: none !important;
    }

    .vt-window::before,
    .vt-window::after {
        display: none !important;
    }

    .vt-cards {
        break-inside: avoid;
    }

    .vt-card {
        border: 1px solid #ddd !important;
        background: #f9f9f9 !important;
    }

    .vt-card img {
        opacity: 0.5 !important;
    }

    .vt-tab-active {
        background: #000 !important;
        color: #fff !important;
    }

    .clipboard-section,
    .code-showcase,
    .dev-testimonials,
    .portfolio,
    .process-section,
    .workflow,
    .pricing,
    .faq-section,
    .contact-section,
    .vt-footer {
        background: #fff !important;
        color: #000 !important;
    }

    .vt-footer {
        border-top: 1px solid #ddd !important;
    }

    .faq-item {
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .faq-question {
        color: #000 !important;
    }

    .faq-icon {
        background: #000 !important;
    }

    .faq-icon::before,
    .faq-icon::after {
        background: #fff !important;
    }

    .faq-item.active .faq-answer {
        max-height: none !important;
    }
}